-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
34 lines (34 loc) · 944 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
{
"name": "fastcall",
"version": "0.2.6",
"description": "fastcall - Very fast, asynchronous, dyncall based foreign function interface library for Node.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/unbornchikken/fastcall.git"
},
"dependencies": {
"babel-polyfill": "^6.16.0",
"bindings": "1",
"bluebird": "3",
"cmake-js": "3",
"lodash": "4",
"minimist": "^1.2.0",
"nan": "^2.4.0",
"debug": "^2.2.0"
},
"scripts": {
"install": "cmake-js compile",
"test": "mocha -gc",
"babel": "babel lib -d es5/lib --source-maps&&babel test -d es5/test --source-maps&&babel benchmarks -d es5/benchmarks --source-maps"
},
"main": "lib/",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-without-strict": "0.0.4",
"ffi": "^2.1.0",
"mocha": "3",
"rimraf": "^2.5.4"
}
}