forked from mapbox/node-pre-gyp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.76 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.76 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@acalcutt/node-pre-gyp",
"description": "Node.js native addon binary install tool",
"version": "2.0.4",
"keywords": [
"native",
"addon",
"module",
"c",
"c++",
"bindings",
"binary"
],
"license": "BSD-3-Clause",
"author": "Dane Springmeyer <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/acalcutt/node-pre-gyp"
},
"bin": {
"node-pre-gyp": "bin/node-pre-gyp"
},
"main": "./lib/node-pre-gyp.js",
"engines": {
"node": ">=18"
},
"dependencies": {
"consola": "^3.2.3",
"detect-libc": "^2.0.0",
"https-proxy-agent": "^7.0.5",
"node-fetch": "^2.6.7",
"nopt": "^8.0.0",
"semver": "^7.5.3",
"tar": "^7.5.7"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.714.0",
"@mapbox/cloudfriend": "^9.0.0",
"@mapbox/eslint-config-mapbox": "5.0.1",
"codecov": "^3.8.3",
"eslint": "^8.57.0",
"eslint-plugin-n": "17.9.0",
"mock-aws-s3": "^4.0.2",
"nock": "^13.5.4",
"node-addon-api": "^8.1.0",
"nyc": "^17.0.0",
"rimraf": "^6.1.2",
"tape": "^5.5.2",
"tar-fs": "^3.1.1"
},
"nyc": {
"all": true,
"skip-full": false,
"exclude": [
"test/**"
]
},
"scripts": {
"coverage": "nyc --all --include index.js --include lib/ npm test",
"upload-coverage": "nyc report --reporter json && codecov --clear --flags=unit --file=./coverage/coverage-final.json",
"lint": "eslint bin/node-pre-gyp lib/*js lib/util/*js test/*js scripts/*js",
"fix": "npm run lint -- --fix",
"update-crosswalk": "node scripts/abi_crosswalk.js",
"test": "tape test/*test.js",
"test:s3": "tape test/s3.test.js",
"bucket": "node scripts/set-bucket.js"
},
"overrides": {
"js-yaml": "^3.14.2"
}
}