forked from minggangw/ref-struct-di
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 871 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 871 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
{
"name": "@rclnodejs/ref-struct-di",
"description": "Create ABI-compliant \"struct\" instances on top of Buffers",
"keywords": [
"struct",
"ref",
"abi",
"c",
"c++",
"ffi"
],
"version": "1.1.1",
"author": "Anna Henningsen <anna@addaleax.net>",
"contributors": [
"Nathan Rajlich <nathan@tootallnate.net>"
],
"repository": {
"type": "git",
"url": "git://github.com/rclnodejs/ref-struct-di.git"
},
"main": "./lib/struct.js",
"license": "MIT",
"scripts": {
"test": "node-gyp rebuild --directory test && nyc mocha --expose-gc --reporter spec"
},
"dependencies": {
"debug": "^4.3.1"
},
"devDependencies": {
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"node-gyp-build": "^4.2.1",
"node-addon-api": "^3.0.0",
"@rclnodejs/ref-array-di": "^1.2.2",
"@rclnodejs/ref-napi": "^4.0.0"
}
}