-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "adbjs",
"version": "0.2.6",
"description": "Call adb methods from node",
"main": "./bin/adb.js",
"scripts": {
"build": "./node_modules/babel-cli/bin/babel.js ./lib -d ./bin",
"prepublish": "npm run build",
"example": "npm run build && node ./example/index.js",
"test": "./node_modules/mocha/bin/mocha tests/* --compilers js:babel-core/register -t 0",
"prepush": "npm test",
"precommit" : "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/Urucas/adbjs.git"
},
"keywords": [
"adb",
"android",
"node",
"javascript",
"js"
],
"author": "Urucas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Urucas/adbjs/issues"
},
"homepage": "https://github.com/Urucas/adbjs",
"dependencies": {},
"devDependencies": {
"adb-mock": "^0.1.8",
"babel-cli": "^6.6.0",
"babel-core": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.0.0",
"husky": "^0.11.3",
"mocha": "^2.2.5"
}
}