66 lines
1.6 KiB
JSON
66 lines
1.6 KiB
JSON
{
|
|
"name": "adevtool",
|
|
"description": "Android device support and bringup tool.",
|
|
"version": "0.0.0",
|
|
"author": "Danny Lin @kdrag0n",
|
|
"bin": {
|
|
"adevtool": "./bin/run"
|
|
},
|
|
"bugs": "https://github.com/kdrag0n/adevtool/issues",
|
|
"dependencies": {
|
|
"@oclif/command": "^1",
|
|
"@oclif/config": "^1",
|
|
"@oclif/plugin-help": "^3",
|
|
"chalk": "^4.1.2",
|
|
"ora": "5.4.1",
|
|
"tslib": "^1",
|
|
"zx": "^4.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@oclif/dev-cli": "^1",
|
|
"@oclif/test": "^1",
|
|
"@types/chai": "^4",
|
|
"@types/mocha": "^5",
|
|
"@types/node": "^16.11.6",
|
|
"chai": "^4",
|
|
"eslint": "^5.13",
|
|
"eslint-config-oclif": "^3.1",
|
|
"eslint-config-oclif-typescript": "^0.1",
|
|
"globby": "^10",
|
|
"mocha": "^5",
|
|
"nyc": "^14",
|
|
"ts-node": "^8",
|
|
"typescript": "^3.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.0.0"
|
|
},
|
|
"files": [
|
|
"/bin",
|
|
"/lib",
|
|
"/npm-shrinkwrap.json",
|
|
"/oclif.manifest.json"
|
|
],
|
|
"homepage": "https://github.com/kdrag0n/adevtool",
|
|
"keywords": [
|
|
"oclif"
|
|
],
|
|
"license": "MIT",
|
|
"main": "lib/index.js",
|
|
"oclif": {
|
|
"commands": "./lib/commands",
|
|
"bin": "adevtool",
|
|
"plugins": [
|
|
"@oclif/plugin-help"
|
|
]
|
|
},
|
|
"repository": "kdrag0n/adevtool",
|
|
"scripts": {
|
|
"postpack": "rm -f oclif.manifest.json",
|
|
"posttest": "eslint . --ext .ts --config .eslintrc",
|
|
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
|
|
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
|
|
"version": "oclif-dev readme && git add README.md"
|
|
},
|
|
"types": "lib/index.d.ts"
|
|
}
|