forked from node-ffi/node-ffi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 911 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "ffi",
"version": "1.2.6",
"authors": [
"Rick Branson",
"Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net)"
],
"description": "A foreign function interface (FFI) for Node.js",
"keywords": [
"foreign",
"function",
"interface",
"ffi",
"libffi",
"binding",
"c"
],
"homepage": "http://github.com/rbranson/node-ffi",
"engines": {
"node": ">=0.6.0"
},
"main": "./lib/ffi",
"dependencies": {
"bindings": "*",
"debug": "*",
"ref": "*",
"ref-struct": "*"
},
"devDependencies": {
"expect.js": "*",
"mocha": "*",
"ref-array": "*"
},
"scripts": {
"test": "node-gyp rebuild --directory test && mocha -gc --reporter spec"
},
"repository": {
"type": "git",
"url": "http://github.com/rbranson/node-ffi.git"
},
"bugs": {
"url": "http://github.com/rbranson/node-ffi/issues"
}
}