forked from TooTallNate/ref-struct
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
33 lines (33 loc) · 793 Bytes
/
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
{
"name": "ref-struct-napi",
"description": "Create ABI-compliant \"struct\" instances on top of Buffers. Supports Node 6, 7, 8, 10, 12.",
"keywords": [
"struct",
"ref",
"abi",
"c",
"c++",
"ffi"
],
"version": "1.1.1",
"author": "Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net) & Janealter",
"repository": {
"type": "git",
"url": "git://github.com/Janealter/ref-struct-napi.git"
},
"main": "./lib/struct.js",
"license": "MIT",
"scripts": {
"test": "node-gyp rebuild --directory test && mocha --expose-gc --reporter spec"
},
"dependencies": {
"debug": "2",
"ref-napi": "^1.4.2"
},
"devDependencies": {
"bindings": "~1.2.0",
"nan": "2",
"mocha": "^6.2.3",
"ref-array-napi": "^1.2.1"
}
}