-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.06 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
{
"author": "Anna Henningsen <[email protected]>",
"contributors": [
"Ben Noordhuis <[email protected]>",
"Nathan Rajlich <[email protected]>"
],
"name": "weak-napi",
"license": "MIT",
"description": "Make weak references to JavaScript Objects.",
"keywords": [
"weak",
"reference",
"js",
"javascript",
"object",
"function",
"callback",
"napi"
],
"version": "2.0.2",
"repository": {
"type": "git",
"url": "git://github.com/node-ffi-napi/weak-napi.git"
},
"main": "lib/weak.js",
"scripts": {
"test": "nyc mocha --expose-gc",
"install": "node-gyp-build",
"prebuild": "prebuildify --napi --tag-armv --tag-uv",
"prepack": "prebuildify-ci download && ([ $(ls prebuilds | wc -l) = '5' ] || (echo 'Some prebuilds are missing'; exit 1))"
},
"dependencies": {
"node-addon-api": "^3.0.0",
"node-gyp-build": "^4.2.1",
"setimmediate-napi": "^1.0.3"
},
"devDependencies": {
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"prebuildify": "^3.0.4",
"prebuildify-ci": "^1.0.5"
}
}