1 | {
|
2 | "name": "node-pre-gyp",
|
3 | "description": "Node.js native addon binary install tool",
|
4 | "version": "0.17.0",
|
5 | "keywords": [
|
6 | "native",
|
7 | "addon",
|
8 | "module",
|
9 | "c",
|
10 | "c++",
|
11 | "bindings",
|
12 | "binary"
|
13 | ],
|
14 | "license": "BSD-3-Clause",
|
15 | "author": "Dane Springmeyer <dane@mapbox.com>",
|
16 | "repository": {
|
17 | "type": "git",
|
18 | "url": "git://github.com/mapbox/node-pre-gyp.git"
|
19 | },
|
20 | "bin": "./bin/node-pre-gyp",
|
21 | "main": "./lib/node-pre-gyp.js",
|
22 | "dependencies": {
|
23 | "detect-libc": "^1.0.3",
|
24 | "mkdirp": "^0.5.5",
|
25 | "needle": "^2.5.2",
|
26 | "nopt": "^4.0.3",
|
27 | "npm-packlist": "^1.4.8",
|
28 | "npmlog": "^4.1.2",
|
29 | "rc": "^1.2.8",
|
30 | "rimraf": "^2.7.1",
|
31 | "semver": "^5.7.1",
|
32 | "tar": "^4.4.13"
|
33 | },
|
34 | "devDependencies": {
|
35 | "aws-sdk": "^2.28.0",
|
36 | "jshint": "^2.9.5",
|
37 | "nock": "^9.2.3",
|
38 | "tape": "^4.6.3"
|
39 | },
|
40 | "jshintConfig": {
|
41 | "node": true,
|
42 | "globalstrict": true,
|
43 | "undef": true,
|
44 | "unused": false,
|
45 | "noarg": true
|
46 | },
|
47 | "scripts": {
|
48 | "pretest": "jshint test/build.test.js test/s3_setup.test.js test/versioning.test.js test/fetch.test.js lib lib/util scripts bin/node-pre-gyp",
|
49 | "update-crosswalk": "node scripts/abi_crosswalk.js",
|
50 | "test": "jshint lib lib/util scripts bin/node-pre-gyp && tape test/*test.js"
|
51 | }
|
52 | }
|