-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "simple-adb",
"version": "1.7.9",
"description": "Module to easily use ADB with node.js",
"main": "build/SimpleADB.js",
"author": "James Irving-Swift <james@irving-swift.com> (http://www.irving-swift.com)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/volumenetwork/SimpleADB"
},
"babel": {
"presets": [
"es2015",
"es2016"
]
},
"scripts": {
"compile": "./node_modules/.bin/gulp build",
"clean": "./node_modules/.bin/gulp clean",
"watch": "./node_modules/.bin/gulp watch",
"test": "./node_modules/.bin/gulp test",
"prepublish": "./node_modules/.bin/gulp prepublish"
},
"dependencies": {
"async": "^2.0.1",
"bluebird": "^3.4.6",
"bunyan": "^1.8.0",
"command-exists": "1.1.0",
"lodash": "^4.14.2"
},
"devDependencies": {
"babel-core": "^6.13.2",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-es2016": "^6.11.3",
"chai": "^3.5.0",
"del": "^2.2.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-eslint": "^3.0.1",
"gulp-mocha": "^4.0.1",
"gulp-plumber": "^1.0.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.8"
}
}