-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
52 lines (52 loc) · 1.18 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
{
"name": "adbkit-monkey",
"version": "1.0.1",
"description": "A Node.js interface to the Android monkey tool.",
"keywords": [
"adb",
"adbkit",
"monkey",
"monkeyrunner"
],
"bugs": {
"url": "https://github.com/CyberAgent/adbkit-monkey/issues"
},
"license": "Apache-2.0",
"author": {
"name": "CyberAgent, Inc.",
"email": "npm@cyberagent.co.jp",
"url": "http://www.cyberagent.co.jp/"
},
"main": "./index",
"repository": {
"type": "git",
"url": "https://github.com/CyberAgent/adbkit-monkey.git"
},
"scripts": {
"postpublish": "grunt clean",
"prepublish": "grunt coffee",
"test": "grunt test"
},
"dependencies": {
"async": "~0.2.9"
},
"devDependencies": {
"chai": "~1.8.1",
"coffee-script": "~1.6.3",
"grunt": "~0.4.1",
"grunt-cli": "~0.1.11",
"grunt-coffeelint": "~0.0.7",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-coffee": "~0.7.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-exec": "~0.4.2",
"grunt-jsonlint": "~1.0.2",
"grunt-notify": "~0.2.16",
"mocha": "~1.14.0",
"sinon": "~1.7.3",
"sinon-chai": "~2.4.0"
},
"engines": {
"node": ">= 0.10.4"
}
}