forked from cicada-lang/cicada-plct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.03 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
{
"name": "@cicada-lang/cicada",
"version": "0.8.24",
"repository": "github:cicada-lang/cicada",
"main": "./lib/index.js",
"files": [
"lib"
],
"bin": {
"cic": "bin/cic.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:cic:tests": "test-runner snapshot './bin/cic.js' 'tests/**/*.(cic|md)' --exclude 'tests/**/*.(error|todo).(cic|md)'",
"test:cic:tests-error": "test-runner snapshot-error './bin/cic.js' 'tests/**/*.error.(cic|md)'",
"test:cic:std": "test-runner snapshot './bin/cic.js' 'std/**/*.(cic|md)' --exclude 'std/**/*.(error|todo).(cic|md)'",
"test:cic:std-error": "test-runner snapshot-error './bin/cic.js' 'std/**/*.error.(cic|md)'",
"test:cic": "npm run test:cic:tests && npm run test:cic:tests-error && npm run test:cic:std && npm run test:cic:std-error",
"test": "npm run test:ts && npm run test:cic",
"format": "prettier src --write"
},
"dependencies": {
"@cicada-lang/framework": "^0.1.5",
"@cicada-lang/partech": "^0.2.5",
"@xieyuheng/command-line": "^0.0.10",
"@xieyuheng/ty": "^0.1.22",
"commonmark": "^0.30.0",
"fast-deep-equal": "^3.1.3",
"lodash": "^4.17.21",
"node-watch": "^0.7.3",
"picocolors": "^1.0.0",
"readdirp": "^3.6.0"
},
"devDependencies": {
"@types/commonmark": "^0.27.6",
"@types/lodash": "^4.14.194",
"@types/node": "^18.15.13",
"@vitest/coverage-c8": "^0.30.1",
"@vitest/coverage-istanbul": "^0.30.1",
"@vitest/ui": "^0.30.1",
"@xieyuheng/test-runner": "^0.2.7",
"husky": "^8.0.3",
"prettier": "^2.8.7",
"prettier-plugin-organize-imports": "^3.2.2",
"pretty-quick": "^3.1.3",
"typescript": "^5.0.4",
"vite": "^4.3.1",
"vitest": "^0.30.1"
},
"license": "GPL-3.0-or-later"
}