-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.52 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
{
"name": "asbuild",
"version": "0.2.0",
"bin": {
"asb": "bin/asb",
"asbuild": "bin/asb",
"assemblyscript-build": "bin/asb"
},
"description": "Build tool for building AssemblyScript projects",
"main": "index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/assemblyscript/asbuild.git",
"author": "Willem Wyndham & Ashutosh Varma",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist/",
"build": "tsc",
"test:build": "(cd tests/build_test && ./test.sh)",
"test": "yarn build && mocha 'tests/*.ts'",
"test:full": "yarn test && yarn test:build"
},
"dependencies": {
"@as-pect/cli": "^6.0.0",
"assemblyscript": "^0.18.31",
"chalk": "^4.1.1",
"eslint": "^7.17.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"@types/chai": "^4.2.17",
"@types/eslint": "^7.2.10",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.2",
"@types/sinon": "^10.0.0",
"@types/sinon-chai": "^3.2.5",
"@types/tmp": "^0.2.0",
"@types/yargs": "^15.0.5",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"sinon": "^10.0.0",
"sinon-chai": "^3.6.0",
"tmp": "^0.2.1",
"ts-node": "^9.1.1",
"typescript": "^3.9.7",
"visitor-as": "^0.2.0"
},
"files": [
"dist/",
"index.js",
"bin/"
],
"mocha": {
"v8-experimental-wasi-unstable-preview1": true,
"v8-no-warnings": true,
"extension": [
"ts"
],
"slow": "2000",
"require": "ts-node/register"
}
}