forked from lxe/node-ffi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.03 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
{
"name": "ffi",
"version": "2.3.0",
"license": "MIT",
"author": "Rick Branson",
"contributors": [
"Nathan Rajlich <[email protected]> (http://tootallnate.net)",
"Gabor Mezo <[email protected]> (https://github.com/unbornchikken)"
],
"description": "A foreign function interface (FFI) for Node.js",
"keywords": [
"foreign",
"function",
"interface",
"ffi",
"libffi",
"binding",
"c"
],
"homepage": "http://github.com/node-ffi/node-ffi",
"engines": {
"node": ">=0.10.0"
},
"main": "./lib/ffi",
"dependencies": {
"bindings": "~1.2.0",
"debug": "2",
"nan": "^2.12.0",
"ref": "1",
"ref-struct": "1"
},
"devDependencies": {
"fs-extra": "^0.23.1",
"mocha": "*",
"ref-array": "1"
},
"scripts": {
"test": "node-gyp rebuild --directory test && mocha -gc --reporter spec"
},
"repository": {
"type": "git",
"url": "http://github.com/node-ffi/node-ffi.git"
},
"bugs": {
"url": "http://github.com/node-ffi/node-ffi/issues"
}
}