forked from jedisct1/wasm-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
14 lines (14 loc) · 755 Bytes
/
package.json
File metadata and controls
14 lines (14 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
"scripts": {
"asbuild:untouched": "asc assembly/index.ts assembly/crypto.ts assembly/precomp.ts -b build/untouched.wasm --importMemory",
"asbuild:small": "asc assembly/index.ts assembly/crypto.ts assembly/precomp.ts -b build/small.wasm -t build/small.wat --sourceMap --validate -O3z --importMemory",
"asbuild:optimized": "asc assembly/index.ts assembly/crypto.ts assembly/precomp.ts -b build/optimized.wasm -t build/optimized.wat --sourceMap --validate -O3 --importMemory",
"asbuild": "npm run asbuild:optimized",
"test": "asp"
},
"devDependencies": {
"assemblyscript": "github:AssemblyScript/assemblyscript",
"as-pect": "github:jtenner/as-pect"
},
"types": "assembly/index"
}