forked from alphacep/node-ffi-napi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.7 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@tigerconnect/ffi-napi",
"version": "4.0.3-tc3",
"license": "MIT",
"author": "Anna Henningsen <[email protected]>",
"contributors": [
"Rick Branson <[email protected]>",
"Nathan Rajlich <[email protected]>",
"Gabor Mezo <[email protected]>"
],
"description": "A foreign function interface (FFI) for Node.js, N-API style",
"keywords": [
"foreign",
"function",
"interface",
"ffi",
"libffi",
"binding",
"c",
"napi",
"stable"
],
"homepage": "http://github.com/node-ffi-napi/node-ffi-napi",
"engines": {
"node": ">=10"
},
"main": "./lib/ffi",
"types": "./lib/ffi.d.ts",
"typesVersions": {
"<=4.1": {
"*": [
"ts4.1/*"
]
}
},
"dependencies": {
"@tigerconnect/ref-napi": "^4.0.0-tc8",
"@types/node": "*",
"@types/ref-struct-di": "*",
"debug": "^4.1.1",
"get-uv-event-loop-napi-h": "^1.0.5",
"node-addon-api": "^3.0.0",
"node-gyp-build": "^4.2.1",
"ref-struct-di": "^1.1.0"
},
"devDependencies": {
"fs-extra": "^9.0.0",
"mocha": "^8.4.0",
"nyc": "^15.0.0",
"prebuildify": "^4.1.2",
"prebuildify-ci": "^1.0.5",
"ref-array-di": "^1.2.1"
},
"scripts": {
"install": "node-gyp-build",
"prebuild": "prebuildify --napi --tag-armv --tag-uv",
"prepack": "prebuildify-ci download && ([ $(ls prebuilds | wc -l) = '6' ] || (echo 'Some prebuilds are missing'; exit 1))",
"test": "node-gyp rebuild --directory test && nyc mocha --expose-gc --reporter spec"
},
"repository": {
"type": "git",
"url": "http://github.com/tigertext/node-ffi-napi.git"
},
"bugs": {
"url": "http://github.com/node-ffi-napi/node-ffi-napi/issues"
}
}