adevtool/package.json

74 lines
1.8 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-08 01:40:57 +01:00
"cli-progress": "^3.9.1",
2021-11-08 02:25:25 +01:00
"node-fetch": "2",
2021-11-07 09:22:09 +01:00
"ora": "5.4.1",
2021-11-07 07:41:53 +01:00
"tslib": "^1",
"unzipit": "^1.3.5",
2021-11-12 01:28:44 +01:00
"xml2js": "^0.4.23",
"yaml": "^1.10.2"
2021-11-07 07:34:51 +01:00
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@types/chai": "^4",
2021-11-08 01:40:57 +01:00
"@types/cli-progress": "^3.9.2",
2021-11-07 07:34:51 +01:00
"@types/mocha": "^5",
2021-11-07 08:36:29 +01:00
"@types/node": "^16.11.6",
"@types/node-fetch": "2.5.12",
2021-11-12 01:28:44 +01:00
"@types/xml2js": "^0.4.9",
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": "^4.4.4"
2021-11-07 07:34:51 +01:00
},
"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"
}