-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
47 lines (47 loc) · 1.15 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "as-bignum",
"version": "0.3.1",
"description": "128 and 256 bits integer and fixed point arithmetics for AssemblyScript. Also support checking overflow/underflow",
"main": "assembly/index.ts",
"types": "assembly/index.ts",
"author": "MaxGraey <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/MaxGraey/as-bignum.git"
},
"bugs": {
"url": "https://github.com/MaxGraey/as-bignum/issues"
},
"keywords": [
"u128",
"u256",
"bignum",
"bigint",
"biginteger",
"fixed",
"wasm",
"webassembly",
"assemblyscript"
],
"scripts": {
"build:debug": "asc assembly/index.ts --target debug",
"build:release": "asc assembly/index.ts --target release",
"build": "yarn build:release",
"test": "asp --config as-pect.config.mjs --verbose",
"test:ci": "asp --config as-pect.config.mjs --summary --no-logo"
},
"devDependencies": {
"@as-pect/cli": "^8.1.0",
"assemblyscript": "^0.27.2",
"typescript": "^5.1"
},
"files": [
"assembly/",
"build/",
"README.md",
"LICENSE",
"package.json",
"yarn.lock"
]
}