-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 826 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 826 Bytes
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
{
"name": "as-t-digest",
"version": "1.0.0",
"description": "t-digest for AssemblyScript",
"main": "index.js",
"scripts": {
"test": "test",
"asbuild:untouched": "asc assembly/index.ts --target debug",
"asbuild:optimized": "asc assembly/index.ts --target release",
"asbuild": "npm run asbuild:untouched && npm run asbuild:optimized",
"test:watch": "onchange -i -k 'assembly/**/*.ts' -- npx asp",
"test:watch-verbose": "onchange -i -k 'assembly/**/*.ts' -- npx asp --verbose"
},
"author": "",
"license": "ISC",
"dependencies": {
"@assemblyscript/loader": "^0.18.9",
"as-avl-tree": "^1.6.3"
},
"devDependencies": {
"@as-pect/cli": "^6.0.0",
"assemblyscript": "^0.18.9",
"onchange": "^7.1.0",
"prettier": "^2.2.1",
"prettier-plugin-jsdoc": "^0.3.12"
}
}