forked from node-ffi-napi/ref-napi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.26 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": "ref-napi",
"description": "Turn Buffer instances into \"pointers\"",
"engines": {
"node": ">= 10.0"
},
"keywords": [
"native",
"buffer",
"extensions",
"c++",
"pointer",
"reference",
"dereference",
"type",
"int",
"long",
"float",
"double",
"byte",
"64",
"napi"
],
"version": "3.0.3",
"license": "MIT",
"author": "Anna Henningsen <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/node-ffi-napi/ref-napi.git"
},
"main": "./lib/ref.js",
"scripts": {
"docs": "node docs/compile",
"test": "nyc mocha --expose-gc",
"install": "node-gyp-build",
"prebuild": "prebuildify --napi --tag-armv",
"prepack": "prebuildify-ci download && ([ $(ls prebuilds | wc -l) = '5' ] || (echo 'Some prebuilds are missing'; exit 1))"
},
"dependencies": {
"debug": "^4.1.1",
"get-symbol-from-current-process-h": "^1.0.2",
"node-addon-api": "^3.0.0",
"node-gyp-build": "^4.2.1"
},
"devDependencies": {
"dox": "0.9.0",
"highlight.js": "^10.0.0",
"jade": "^1.11.0",
"marked": "^1.0.0",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"prebuildify": "^3.0.4",
"prebuildify-ci": "^1.0.5",
"weak-napi": "^2.0.0"
}
}