-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "adb-uninstall",
"version": "0.0.3",
"description": "Uninstalling Android packages from cli",
"main": "./bin/index",
"scripts": {
"test": "./node_modules/mocha/bin/mocha tests/* --compilers js:babel-core/register -t 15s",
"build": "./node_modules/babel-cli/bin/babel.js lib -d dist",
"start": "./bin/index",
"prepublish": "npm run build"
},
"bin": {
"adb-uninstall": "./bin/index"
},
"repository": {
"type": "git",
"url": "https://github.com/Urucas/adb-uninstall.git"
},
"keywords": [
"android",
"adb",
"cli",
"command-line",
"nodejs",
"packages",
"uninstall"
],
"author": "Urucas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Urucas/adb-uninstall/issues"
},
"homepage": "https://github.com/Urucas/adb-uninstall",
"dependencies": {
"adbjs": "^0.2.2",
"inquirer": "^0.8.5",
"lodash": "^4.6.1"
},
"devDependencies": {
"adb-mock": "^0.1.9",
"babel": "^5.6.14",
"babel-cli": "^6.6.5",
"babel-core": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"mocha": "^2.4.5"
}
}