forked from indutny/gyp.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.07 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
{
"name": "gyp.js",
"version": "1.4.14",
"description": "",
"bin": {
"gyp": "bin/gyp"
},
"main": "lib/gyp.js",
"files": [
"lib"
],
"scripts": {
"build": "make build",
"watch": "make build-watch",
"lint": "make lint",
"format": "make format",
"test": "make check && make lint",
"coverage": "make coverage",
"prepublish": "npm run build"
},
"keywords": [],
"author": "Fedor Indutny <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-preset-env": "^1.2.2",
"babel-register": "^6.9.0",
"debug": "^2.6.1",
"eslint": "^2.12.0",
"mocha": "^2.5.3",
"ninja.js": "^1.1.0",
"rimraf": "^2.5.2"
},
"optionalDependencies": {
"windows-autoconf": "^1.9.0",
"ninja.js": "^1.1.0"
},
"dependencies": {
"istanbul": "^0.4.5",
"mkdirp": "^0.5.1",
"parser-base": "^1.0.0",
"yargs-parser": "^2.4.0"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": 4
}
}
]
]
}
}