-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.92 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
{
"name": "@cicada-lang/aziz",
"version": "0.0.1",
"repository": "github:cicada-lang/aziz",
"main": "./lib/index.js",
"files": [
"lib"
],
"bin": {
"aziz": "bin/aziz.js"
},
"scripts": {
"prepare": "husky install",
"build": "tsc",
"build:watch": "tsc --watch",
"test:ts": "vitest --dir src --threads false --run",
"test:watch": "vitest --dir src --threads false",
"test:coverage": "vitest --dir src --threads false --run --coverage ",
"test:gui": "vitest --dir src --threads false --ui",
"test:tests": "test-runner snapshot './bin/aziz.js' 'tests/**/*.(aziz|md)' --exclude 'tests/**/*.error.(aziz|md)'",
"test:tests-error": "test-runner snapshot-error './bin/aziz.js' 'tests/**/*.error.(aziz|md)'",
"test:std": "test-runner snapshot './bin/aziz.js' 'std/**/*.(aziz|md)' --exclude 'std/**/*.error.(aziz|md)'",
"test:std-error": "test-runner snapshot-error './bin/aziz.js' 'std/**/*.error.(aziz|md)'",
"test": "npm run test:ts && npm run test:tests && npm run test:tests-error && npm run test:std && npm run test:std-error",
"format": "prettier src --write"
},
"dependencies": {
"@cicada-lang/partech": "^0.2.1",
"@cicada-lang/sexp": "^0.0.36",
"@xieyuheng/command-line": "^0.0.7",
"@xieyuheng/ty": "^0.1.17",
"commonmark": "^0.30.0",
"fast-deep-equal": "^3.1.3",
"lodash": "^4.17.21",
"node-watch": "^0.7.3",
"readdirp": "^3.6.0"
},
"devDependencies": {
"@types/commonmark": "^0.27.5",
"@types/lodash": "^4.14.186",
"@types/node": "^18.11.7",
"@vitest/coverage-c8": "^0.24.3",
"@vitest/coverage-istanbul": "^0.24.3",
"@vitest/ui": "^0.24.3",
"@xieyuheng/test-runner": "^0.2.7",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"pretty-quick": "^3.1.3",
"typescript": "^4.8.4",
"vite": "^3.2.1",
"vitest": "^0.24.3"
},
"license": "GPL-3.0-or-later"
}