-
Notifications
You must be signed in to change notification settings - Fork 248
/
package.json
64 lines (64 loc) · 1.42 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "adbkit",
"version": "2.11.1",
"description": "A pure Node.js client for the Android Debug Bridge.",
"keywords": [
"adb",
"adbkit",
"android",
"logcat",
"monkey"
],
"bin": {
"adbkit": "./bin/adbkit"
},
"bugs": {
"url": "https://github.com/openstf/adbkit/issues"
},
"license": "Apache-2.0",
"author": {
"name": "The OpenSTF Project",
"email": "contact@openstf.io",
"url": "https://openstf.io"
},
"main": "./index",
"repository": {
"type": "git",
"url": "https://github.com/openstf/adbkit.git"
},
"scripts": {
"postpublish": "grunt clean",
"prepublish": "grunt test coffee",
"test": "grunt test"
},
"dependencies": {
"adbkit-logcat": "^1.1.0",
"adbkit-monkey": "~1.0.1",
"bluebird": "~2.9.24",
"commander": "^2.3.0",
"debug": "~2.6.3",
"node-forge": "^0.7.1",
"split": "~0.3.3"
},
"devDependencies": {
"bench": "~0.3.5",
"chai": "~2.2.0",
"coffee-script": "~1.9.1",
"grunt": "~0.4.5",
"grunt-cli": "~0.1.13",
"grunt-coffeelint": "0.0.13",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-coffee": "~0.13.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-exec": "~0.4.3",
"grunt-jsonlint": "~1.0.4",
"grunt-notify": "~0.4.1",
"mocha": "~2.2.1",
"sinon": "~1.14.1",
"sinon-chai": "~2.7.0",
"coffeelint": "~1.9.3"
},
"engines": {
"node": ">= 0.10.4"
}
}