-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 839 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 839 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
36
37
38
{
"name": "ref-struct-di",
"description": "Create ABI-compliant \"struct\" instances on top of Buffers",
"keywords": [
"struct",
"ref",
"abi",
"c",
"c++",
"ffi"
],
"version": "1.1.0",
"author": "Anna Henningsen <anna@addaleax.net>",
"contributors": [
"Nathan Rajlich <nathan@tootallnate.net>"
],
"repository": {
"type": "git",
"url": "git://github.com/node-ffi-napi/ref-struct-di.git"
},
"main": "./lib/struct.js",
"license": "MIT",
"scripts": {
"test": "node-gyp rebuild --directory test && nyc mocha -gc --reporter spec"
},
"dependencies": {
"debug": "^3.1.0"
},
"devDependencies": {
"binding": "^3.0.3",
"bindings": "~1.3.0",
"mocha": "^5.0.0",
"nan": "^2.8.0",
"nyc": "^13.2.0",
"ref-array": "^1.2.0",
"ref-napi": "^1.4.0"
}
}