-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
34 lines (34 loc) · 1.26 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
{
"name": "wasm-crypto",
"version": "0.0.13",
"scripts": {
"asbuild:untouched": "asc assembly/crypto.ts assembly/precomp.ts -b build/untouched.wasm",
"asbuild:small": "asc assembly/crypto.ts assembly/precomp.ts -b build/small.wasm -t build/small.wat --sourceMap -O3z",
"asbuild:optimized": "asc assembly/crypto.ts assembly/precomp.ts -b build/optimized.wasm -t build/optimized.wat --sourceMap -O3",
"asbuild": "npm run asbuild:optimized",
"test": "asp --verbose"
},
"types": "assembly/crypto.ts",
"ascMain": "assembly/crypto.ts",
"devDependencies": {
"@as-pect/cli": "^6.2.4",
"assemblyscript": "^0.19.22"
},
"author": "Frank Denis <j at pureftpd dot org>",
"bugs": {
"url": "https://github.com/jedisct1/wasm-crypto/issues"
},
"description": "A WebAssembly (via AssemblyScript) set of cryptographic primitives for building authentication and key exchange protocols.",
"homepage": "https://github.com/jedisct1/wasm-crypto",
"keywords": [
"webassembly",
"assemblyscript",
"crypto",
"cryptography"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jedisct1/wasm-crypto.git"
}
}