-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.35 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
{
"name": "@cicada-lang/causality",
"version": "0.0.1",
"repository": "github:cicada-lang/causality",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"watch": "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: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": "npm-run-all test:*"
},
"devDependencies": {
"@types/nanoid": "^2.1.0",
"@types/node": "^18.0.3",
"@xieyuheng/test-runner": "^0.2.5",
"npm-run-all": "^4.1.5",
"pkg": "^5.7.0",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@xieyuheng/command-line": "^0.0.7",
"@xieyuheng/test-case": "^0.0.14",
"@xieyuheng/ty": "^0.1.13",
"axios": "^0.27.2",
"commonmark": "^0.30.0",
"fast-deep-equal": "^3.1.3",
"nanoid": "^4.0.0",
"node-watch": "^0.7.3",
"picocolors": "^1.0.0",
"readdirp": "^3.6.0"
},
"license": "GPL-3.0-or-later"
}