-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 933 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 933 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
28
29
30
{
"name": "@zondax/assemblyscript-cbor",
"version": "0.0.0",
"description": "AssemblyScript CBOR enconder/decoder",
"main": "assembly/index.ts",
"repository": "https://github.com/Zondax/assemblyscript-cbor.git",
"author": "Zondax AG",
"license": "MIT",
"devDependencies": {
"assemblyscript": "^0.20.8"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"asbuild:debug": "asc assembly/index.ts --target debug",
"asbuild:release": "asc assembly/index.ts --target release",
"asbuild": "npm run asbuild:debug && npm run asbuild:release",
"asbuild:test:debug": "asc assembly/test_index.ts --target debug --exportRuntime",
"asbuild:test": "npm run asbuild:test:debug",
"test": "node tests/encoding.test.js && node tests/decoding.test.js"
},
"type": "module",
"exports": {
".": {
"import": "./build/release.js",
"types": "./build/release.d.ts"
}
}
}