-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 880 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
{
"name": "node-tinycc",
"version": "0.0.9",
"description": "Inline C in Javascript with Tiny C Compiler.",
"main": "index.js",
"scripts": {
"test": "node node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec",
"preinstall": "node preinstall.js",
"install": "node install.js",
"doc": "node_modules/jsdoc-to-markdown/bin/cli.js index.js > doc/api.md"
},
"author": "Joerg Breitbart <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jerch/node-tinycc.git"
},
"dependencies": {
"ffi": "^2.2.0",
"ref": "^1.3.4"
},
"devDependencies": {
"istanbul": "^0.4.5",
"jsdoc-to-markdown": "^3.0.0",
"mocha": "^3.4.2",
"ref-array": "git+https://github.com/jerch/ref-array.git",
"ref-struct": "^1.1.0",
"ref-wchar": "^1.0.2"
}
}