forked from JairusSW/as-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.56 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
{
"name": "json-as",
"version": "0.3.0",
"description": "JSON encoder/decoder for AssemblyScript",
"types": "assembly/index.ts",
"author": "Jairus Tanaka",
"contributors": [
"DogWhich"
],
"license": "MIT",
"scripts": {
"bench:astral": "astral",
"build:test": "asc assembly/test.ts --target test",
"build:test:watch": "onchange -d 5000 \"assembly/test.ts\" -- asc assembly/test.ts --target test",
"build:transform": "tsc -w -p ./transform",
"test:wasmtime": "wasmtime ./build/test.wasm",
"test:wasmtime:watch": "onchange -d 5000 \"build/test.wasm\" -- wasmtime ./build/test.wasm",
"test:lunatic": "lunatic ./build/test.wasm",
"test:lunatic:watch": "onchange 'build/test.wasm' -- lunatic ./build/test.wasm",
"test:node": "",
"test:browser": "serve ."
},
"devDependencies": {
"@as-tral/cli": "^1.1.1",
"@envy-as/cli": "https://github.com/jtenner/envy",
"@wasmer/wasi": "^1.0.2",
"as-console": "^6.0.2",
"assemblyscript": "^0.20.6",
"benchmark": "^2.1.4",
"microtime": "^3.0.0",
"typescript": "^4.7.2"
},
"dependencies": {
"as-string-sink": "^0.5.0",
"as-variant": "^0.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JairusSW/as-json.git"
},
"keywords": [
"assemblyscript",
"json",
"serialize",
"deserialize",
"dynamic"
],
"bugs": {
"url": "https://github.com/JairusSW/as-json/issues"
},
"homepage": "https://github.com/JairusSW/as-json#readme",
"type": "module"
}