-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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
{
"name": "as-bigint",
"description": "AssemblyScript package for math with arbitrarily large integers",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/polywrap/as-bigint.git"
},
"version": "0.5.3",
"types": "assembly/index.ts",
"releaseFiles": [
"assembly/",
"build/",
"README.md",
"LICENSE",
"package.json",
"yarn.lock"
],
"scripts": {
"reset": "yarn clean && yarn && yarn build",
"clean": "rimraf ./node_modules ./build ./**/coverage",
"build": "yarn build:optimized",
"build:untouched": "asc assembly/index.ts -o ./build/BigInt.wasm -d ./build/BigInt.d.ts --target debug",
"build:optimized": "asc assembly/index.ts -o ./build/BigInt.wasm -d ./build/BigInt.d.ts --target release",
"test": "asp --verbose",
"test:ci": "asp --summary",
"lint": "yarn eslint assembly",
"lint:fix": "yarn eslint assembly --fix",
"lint:ci": "yarn eslint assembly"
},
"devDependencies": {
"@as-pect/cli": "6.2.4",
"@typescript-eslint/eslint-plugin": "4.11.1",
"@typescript-eslint/parser": "4.11.1",
"assemblyscript": "0.19.20",
"eslint": "7.16.0",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.3.0",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"typescript": "^4.0.7"
}
}