adevtool/package.json

67 lines
1.6 KiB
JSON
Raw Normal View History

2021-11-07 07:34:51 +01:00
{
"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",
2021-11-07 07:39:02 +01:00
"chalk": "^4.1.2",
2021-11-07 09:22:09 +01:00
"ora": "5.4.1",
2021-11-07 07:41:53 +01:00
"tslib": "^1",
"zx": "^4.2.0"
2021-11-07 07:34:51 +01:00
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@types/chai": "^4",
"@types/mocha": "^5",
2021-11-07 08:36:29 +01:00
"@types/node": "^16.11.6",
2021-11-07 07:34:51 +01:00
"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"
}