forked from MaxGraey/as-bignum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 977 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
{
"name": "bignum",
"version": "0.1.1",
"description": "128 and 256 bits integer and fixed point arithmetics. Also support checking overflow/underflow",
"main": "js/index.js",
"types": "assembly/index.ts",
"author": "MaxGraey <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build:debug": "npx asc assembly/index.ts -b build/debug/bignum.wasm -t build/debug/bignum.wat --debug --sourceMap --validate --runtime stub",
"build:release": "npx asc assembly/index.ts -b build/release/bignum.wasm -t build/release/bignum.wat -O3 --sourceMap --validate --runtime stub",
"build:wasm": "yarn build:debug && yarn build:release",
"build": "yarn build:wasm",
"test": "asp --nortrace --verbose",
"test:ci": "asp --nortrace 2> /dev/null"
},
"devDependencies": {
"@as-pect/cli": "^2.4.1",
"@types/node": "^12.7.2",
"assemblyscript": "AssemblyScript/assemblyscript",
"ts-node": "^8.3.0",
"typescript": "^3.6.2"
}
}