-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 772 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "wasm-to-asm",
"version": "1.0.0",
"description": "Combile WASM to x86_64",
"main": "main.js",
"scripts": {
"build": "tsc",
"wabt": "bash -c '[[ -d test/wabt ]]' || (git clone --recursive --depth 1 https://github.com/WebAssembly/wabt test/wabt && cd test/wabt && make clang-release-no-tests)",
"clone-spec": "rm -rf test/spec && cd test && git clone https://github.com/WebAssembly/spec && cd spec && git checkout 704d9d9e9c861fdb957c3d5e928f1d046a31497e",
"ava": "ava -v -T 1m test/main.js",
"test": "npm run build && npm run wabt && tsc -p test/tsconfig.json && npm run clone-spec && npm run ava"
},
"author": "Caleb Sander",
"license": "MIT",
"devDependencies": {
"@types/node": "^13.9.8",
"ava": "^3.5.2",
"typescript": "^3.8.3"
}
}