forked from TooTallNate/ref-struct
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 755 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 755 Bytes
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
{
"name": "ref-struct",
"description": "Create ABI-compliant \"struct\" instances on top of Buffers",
"keywords": [
"struct",
"ref",
"abi",
"c",
"c++",
"ffi"
],
"version": "2.0.1",
"author": "Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net)",
"repository": {
"type": "git",
"url": "git://github.com/TooTallNate/ref-struct.git"
},
"main": "./lib/struct.js",
"license": "MIT",
"scripts": {
"test": "node-gyp rebuild --directory test && mocha -gc-global --expose-gc --reporter spec"
},
"dependencies": {
"debug": "4"
},
"peerDependencies": {
"ref": "*",
"ref-array": "*"
},
"devDependencies": {
"bindings": "~1.5.0",
"nan": "2",
"mocha": "*"
}
}