-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 962 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 962 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
{
"name": "node-tinycc",
"version": "0.1.0",
"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 <j.breitbart@netzkolchose.de>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jerch/node-tinycc.git"
},
"dependencies": {
"@napi-ffi/ffi-napi": "^4.0.3",
"nan": "^2.25.0",
"@napi-ffi/ref-napi": "^3.0.5"
},
"devDependencies": {
"iconv": "^3.0.1",
"istanbul": "^0.4.5",
"jsdoc-to-markdown": "^9.1.3",
"mocha": "^11.7.5",
"node-gyp": "^12.2.0",
"ref-array-napi": "^1.2.2",
"ref-struct-napi": "^1.1.1",
"ref-wchar-napi": "^1.0.3"
}
}