-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
{
"name": "as-lunatic",
"version": "0.12.0",
"types": "assembly/index.ts",
"main": "assembly/index.ts",
"description": "Bindings for lunatic imports",
"scripts": {
"asbuild": "asc assembly/tests.ts --outFile build/test.wasm --textFile=build/test.wat --config asconfig.json --target debug",
"run:test": "lunatic build/test.wasm",
"test": "run-s asbuild run:test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lunatic-solutions/as-lunatic.git"
},
"keywords": [
"lunatic",
"wasm",
"wasi"
],
"author": "Joshua Tenner <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lunatic-solutions/as-lunatic/issues"
},
"homepage": "https://github.com/lunatic-solutions/as-lunatic#readme",
"dependencies": {
"@ason/assembly": "0.11.1",
"@assemblyscript/wasi-shim": "^0.1.0",
"as-disposable": "^0.1.2"
},
"devDependencies": {
"assemblyscript": "^0.24.1",
"npm-run-all": "^4.1.5"
}
}