-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.89 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "json-as",
"version": "0.2.6",
"description": "JSON encoder/decoder for AssemblyScript",
"types": "assembly/index.ts",
"ascMain": "assembly/index.ts",
"author": "JairusSW",
"license": "MIT",
"scripts": {
"build:transform": "tsc -w -p ./transform",
"build:test": "asc assembly/test.ts --transform ./transform --target test --explicitStart",
"test": "node --experimental-wasi-unstable-preview1 ./tests/test",
"bench:build": "asc assembly/bench.ts --runtime incremental --transform ./transform --target bench --explicitStart",
"bench:node": "node --experimental-wasi-unstable-preview1 ./bench/bench",
"bench:wasmtime": "wasmtime ./bench/output/bench.wasm",
"bench:lunatic": "lunatic ./bench/output/bench.wasm",
"asbuild:untouched": "asc assembly/index.ts --target debug",
"asbuild:optimized": "asc assembly/index.ts --target release",
"asbuild": "yarn asbuild:untouched && yarn asbuild:optimized"
},
"devDependencies": {
"@as-pect/cli": "^6.2.4",
"@assemblyscript/loader": "^0.19.10",
"@serial-as/json": "^1.0.2",
"@types/jest": "^27.0.2",
"@types/line-column": "^1.0.0",
"as-base64": "^0.2.0",
"as-bignum": "^0.2.18",
"as-console": "^6.0.2",
"as-variant": "^0.2.1",
"as-wasi": "^0.4.6",
"asbuild": "^0.2.0",
"assemblyscript": "^0.19.18",
"assemblyscript-json": "^1.1.0",
"jest": "^27.3.1",
"kati": "^0.6.2",
"lerna": "^4.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"as-string-sink": "^0.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aspkg/as-json.git"
},
"keywords": [
"assemblyscript",
"json",
"serialize",
"deserialize"
],
"bugs": {
"url": "https://github.com/aspkg/as-json/issues"
},
"homepage": "https://github.com/aspkg/as-json#readme"
}