-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 947 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
{
"name": "elm-c-wasm",
"version": "1.0.0",
"description": "Elm core libraries implemented in C/Wasm",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "node ./dist/wasm/test.js --all",
"start": "node ./scripts/watch-build.js",
"wasm": "node ./scripts/watch-build.js bash -ic make wasm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brian-carroll/elm_c_wasm.git"
},
"keywords": [
"elm",
"webassembly"
],
"author": "Brian Carroll",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/brian-carroll/elm_c_wasm/issues"
},
"homepage": "https://github.com/brian-carroll/elm_c_wasm#readme",
"dependencies": {
"@types/node": "^16.6.1",
"uglify-js": "^3.14.2"
},
"devDependencies": {
"http-server": "^0.12.1",
"jasmine": "^3.5.0",
"jasmine-console-reporter": "^3.1.0",
"typescript": "^3.6.4"
}
}