@ajhenry/stack
Version:
A CLI to bootstrap dev environments lightning fast ⚡
87 lines (86 loc) • 2.23 kB
JSON
{
"name": "@ajhenry/stack",
"description": "A CLI to bootstrap dev environments lightning fast ⚡",
"version": "0.2.0",
"author": "Andrew Henry <andrew.henry@pitt.edu>",
"bin": {
"stack": "./bin/run"
},
"bugs": "https://github.com/ajhenry/stack/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"@octokit/rest": "^18.0.12",
"axios": "^0.21.1",
"command-exists": "^1.2.9",
"find-up": "^5.0.0",
"fs-extra": "^9.1.0",
"ink": "^3.0.8",
"js-yaml": "^4.0.0",
"json5": "^2.1.3",
"react": "^17.0.1",
"shelljs": "^0.8.4",
"tmp-promise": "^3.0.2",
"tslib": "^1",
"tslog": "^3.1.1",
"url-join": "^4.0.1"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@types/chai": "^4",
"@types/command-exists": "^1.2.0",
"@types/fs-extra": "^9.0.6",
"@types/js-yaml": "^4.0.0",
"@types/json5": "^0.0.30",
"@types/mocha": "^5",
"@types/node": "^10",
"@types/shelljs": "^0.8.8",
"@types/url-join": "^4.0.0",
"chai": "^4",
"eslint": "^5.13",
"eslint-config-oclif": "^3.1",
"eslint-config-oclif-typescript": "^0.1",
"globby": "^10",
"mocha": "^8.2.1",
"nyc": "^14",
"rimraf": "^3.0.2",
"ts-node": "^8",
"typescript": "^3.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/ajhenry/stack",
"keywords": [
"oclif",
"stack",
"dev",
"bootstrap"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "stack",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "https://github.com/ajhenry/stack",
"scripts": {
"postpack": "rimraf -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rimraf -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "nyc --extension .ts mocha --config test/.mocharc.yml --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}