-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.72 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
{
"name": "@cicada-lang/cicada-sole",
"version": "0.7.12",
"repository": "github:cicada-lang/cicada-sole",
"files": [
"lib"
],
"bin": {
"cic-solo": "bin/cic.js"
},
"scripts": {
"build": "rm -r lib && tsc",
"build:watch": "rm -r lib && tsc --watch",
"format": "prettier src docs --write",
"test:test-case": "test-runner test 'test-case run' 'lib/**/*.case.js'",
"test:js": "test-runner test node 'lib/**/*.test.js'",
"test:snapshot": "test-runner snapshot node 'lib/**/*.snapshot.js' --extern snapshot",
"test:manual": "test-runner snapshot './bin/cic.js' 'docs/manual/**/*.(cic|md)' --exclude 'docs/manual/**/*.error.(cic|md)'",
"test:manual-error": "test-runner snapshot-error './bin/cic.js' 'docs/manual/**/*.error.(cic|md)'",
"test:tests": "test-runner snapshot './bin/cic.js' 'docs/tests/**/*.(cic|md)' --exclude 'docs/tests/**/*.error.(cic|md)'",
"test:tests-error": "test-runner snapshot-error './bin/cic.js' 'docs/tests/**/*.error.(cic|md)'",
"test:articles": "test-runner test './bin/cic.js' 'docs/articles/**/*.(cic|md)'",
"test": "npm-run-all test:*"
},
"dependencies": {
"@cicada-lang/partech": "^0.2.5",
"@xieyuheng/command-line": "^0.0.13",
"@xieyuheng/test-case": "^0.0.15",
"@xieyuheng/ty": "^0.1.26",
"commonmark": "^0.30.0",
"fast-deep-equal": "^3.1.3",
"node-watch": "^0.7.4",
"picocolors": "^1.0.0",
"readdirp": "^3.6.0"
},
"devDependencies": {
"@types/commonmark": "^0.27.7",
"@types/node": "^20.8.3",
"@xieyuheng/test-runner": "^0.2.10",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"typescript": "^5.2.2"
},
"license": "GPL-3.0-or-later"
}