-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.62 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
61
62
63
64
{
"name": "as-test",
"version": "0.3.5",
"description": "Testing framework for AssemblyScript. Compatible with WASI or Bindings ",
"types": "assembly/index.ts",
"author": "Jairus Tanaka",
"contributors": [],
"license": "MIT",
"scripts": {
"test": "node ./bin/index.js run",
"pretest": "node ./bin/index.js build",
"build:transform": "tsc -p ./transform",
"build:cli": "tsc -p cli",
"build:run": "tsc -p run",
"prettier": "prettier -w .",
"prepublish": "npm run build:cli && npm run build:transform && npm run test"
},
"devDependencies": {
"@assemblyscript/wasi-shim": "^0.1.0",
"@types/node": "^20.14.10",
"as-sleep": "^0.0.2",
"as-test": "./",
"assemblyscript": "^0.27.29",
"assemblyscript-prettier": "^3.0.1",
"typescript": "^5.5.3",
"visitor-as": "^0.11.4"
},
"dependencies": {
"as-console": "^7.0.0",
"as-rainbow": "^0.1.0",
"as-variant": "^0.4.1",
"chalk": "^5.3.0",
"glob": "^11.0.0",
"json-as": "^0.9.21",
"typer-diff": "^1.1.1"
},
"overrides": {
"assemblyscript": "$assemblyscript",
"visitor-as": "$visitor-as"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JairusSW/as-test.git"
},
"keywords": [
"assemblyscript",
"testing",
"test",
"as-pect",
"aspect"
],
"bugs": {
"url": "https://github.com/JairusSW/as-test/issues"
},
"homepage": "https://github.com/JairusSW/as-test#readme",
"type": "module",
"publishConfig": {
"@JairusSW:registry": "https://npm.pkg.github.com"
},
"bin": {
"as-test": "./bin/index.js",
"ast": "./bin/index.js"
}
}