forked from felixrieseberg/windows-build-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.29 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
{
"name": "windows-build-tools",
"version": "0.4.1",
"description": "Install C++ Build Tools for Windows using npm",
"main": "lib/index.js",
"scripts": {
"test": "standard \"src/*.js\" && npm run build && mocha",
"postinstall": "node ./lib/index.js",
"build": "babel src -d lib",
"prepublish": "npm run build",
"start": "npm run build && npm run postinstall"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felixrieseberg/windows-build-tools.git"
},
"os": [
"win32"
],
"keywords": [
"Windows",
"Build Tools",
"node-gyp",
"native",
"c++"
],
"engines": {
"node": ">=4.0.0"
},
"author": "Felix Rieseberg <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/felixrieseberg/windows-build-tools/issues"
},
"homepage": "https://github.com/felixrieseberg/windows-build-tools#readme",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"mocha": "^2.5.3",
"mockery": "^1.7.0",
"rewire": "^2.5.1",
"standard": "^7.1.2"
},
"dependencies": {
"chalk": "^1.1.3",
"cli-spinner": "^0.2.5",
"debug": "^2.2.0",
"fs-extra": "^0.30.0",
"nugget": "^2.0.0"
}
}