-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "holyc",
"version": "0.0.16",
"description": "An easy to use C++ to WASM compiler (Highly-experimental)",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"@webassemblyjs/ast": "^1.5.9",
"@webassemblyjs/wasm-edit": "^1.5.9",
"commander": "^2.15.1",
"mkdirp": "^0.5.1",
"multi-progress": "^2.0.0",
"rimraf": "^2.6.2"
},
"devDependencies": {
"http-server": "^0.11.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "node ./src/post-install.js",
"serve-examples": "http-server -c-1 examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xtuc/holyc.git"
},
"author": "Sven Sauleau",
"license": "ISC",
"bugs": {
"url": "https://github.com/xtuc/holyc/issues"
},
"homepage": "https://github.com/xtuc/holyc#readme",
"bin": {
"holyc": "./src/bin/compilec++.js",
"holyc++": "./src/bin/compilec++.js",
"holycgo": "./src/bin/compilecgo.js"
}
}