-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 1.18 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
{
"name": "as-scale-codec",
"version": "0.2.1",
"description": "AssemblyScript implementation of the SCALE codec used in the Parity Substrate framework",
"main": "./assembly/index.ts",
"contributors": [
"Daniel Ivanov <daniel-k-ivanov>",
"Lyubomir Kiprov <bakasura980>"
],
"scripts": {
"asbuild": "npx asc assembly/index.ts -b build/release/as-scale-codec.wasm -t build/release/as-scale-codec.wat --sourceMap --runtime full --optimize",
"test:js": "npm run asbuild && node tests",
"test": "asp --verbose",
"test:ci": "asp --summary"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LimeChain/assemblyscript-scale-codec.git"
},
"keywords": [
"assembly-script",
"SCALE",
"Polkadot",
"Substrate"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/LimeChain/assemblyscript-scale-codec/issues"
},
"homepage": "https://github.com/LimeChain/assemblyscript-scale-codec#readme",
"dependencies": {
"@as-pect/assembly": "^4.0.0",
"@as-pect/cli": "^4.0.0",
"@as-pect/core": "^4.0.0",
"@assemblyscript/loader": "^0.16.1",
"as-bignum": "^0.2.6",
"assemblyscript": "^0.16.1"
}
}