forked from node-ffi-napi/node-ffi-napi
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
81 lines (81 loc) · 1.93 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@2060.io/ffi-napi",
"version": "4.0.9",
"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": ">=18"
},
"main": "./lib/ffi",
"dependencies": {
"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",
"@2060.io/ref-napi": "^3.0.6",
"ref-struct-di": "^1.1.0"
},
"devDependencies": {
"@types/ref-array-di": "^1.2.8",
"fs-extra": "^9.0.0",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"prebuildify": "^4.0.0",
"prebuildify-ci": "^1.0.5",
"ref-array-di": "^1.2.1",
"release-it": "^14.13.1"
},
"scripts": {
"install": "node-gyp-build",
"prebuild": "prebuildify --napi --tag-armv --tag-uv",
"release": "release-it",
"test": "node-gyp rebuild --directory test && nyc mocha --expose-gc --reporter spec"
},
"repository": {
"type": "git",
"url": "http://github.com/node-ffi-napi/node-ffi-napi.git"
},
"bugs": {
"url": "http://github.com/node-ffi-napi/node-ffi-napi/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"types": "types/index.d.ts",
"release-it": {
"github": {
"release": true
},
"npm": {
"skipChecks": true,
"ignoreVersion": true,
"tag": "latest"
},
"git": {
"push": false,
"commit": false,
"requireCommits": true,
"tagAnnotation": "${version}",
"requireBranch": "master"
}
}
}