-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1013 Bytes
/
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
{
"name": "ason",
"version": "0.0.4",
"description": "AssemblyScript Objects Encoded and Decoded in a standardized way",
"main": "index.js",
"scripts": {
"postinstall": "lerna bootstrap --hoist",
"pretest": "npm run build",
"test": "cd packages/test && npm run test",
"build": "lerna exec tsc --scope '*/transform'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jtenner/ason.git"
},
"keywords": [
"assemblyscript",
"data",
"serialization",
"transform"
],
"author": "Joshua Tenner <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jtenner/ason/issues"
},
"workspaces": [
"assembly",
"transform"
],
"homepage": "https://github.com/jtenner/ason#readme",
"devDependencies": {
"@as-pect/cli": "^8.0.0",
"lerna": "^6.1.0",
"npm-run-all": "^4.1.5",
"typescript": "^4.9.3",
"assemblyscript": "^0.24.1"
},
"dependencies": {
"visitor-as": "^0.11.3"
}
}