-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
48 lines (48 loc) · 1.03 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": "macaca-adb",
"version": "1.0.34",
"description": "Node.js wrapper for ADB.",
"keywords": [
"adb",
"macaca"
],
"bin": {
"macaca-adb": "./bin/macaca-adb"
},
"main": "./lib/macaca-adb",
"repository": {
"type": "git",
"url": "git://github.com/macacajs/macaca-adb.git"
},
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0",
"macaca-utils": "^1.0.0",
"npm-update": "^1.0.2",
"xlogger": "~1.0.0",
"xutil": "^1.0.1"
},
"devDependencies": {
"co-mocha": "~1.1.2",
"eslint": "^4.14.0",
"eslint-plugin-mocha": "^4.11.0",
"git-contributor": "1",
"husky": "^1.3.1",
"mocha": "^4.1.0",
"nyc": "^11.8.0",
"should": "~8.0.2",
"unlock-apk": "^1.0.8"
},
"scripts": {
"ci": "npm run lint && npm run test",
"test": "nyc --reporter=lcov --reporter=text mocha",
"lint": "eslint --fix lib test",
"contributor": "git-contributor"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"license": "MIT"
}