-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (31 loc) · 954 Bytes
/
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
{
"name": "seshat",
"private": true,
"dependencies": {
"antlr4ts": "^0.5.0-alpha.4",
"assert": "^2.0.0",
"typescript": "^5.5.4"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"antlr4ts-cli": "^0.5.0-alpha.4",
"esbuild": "^0.18.11",
"eslint": "^8.57.0",
"ts-node": "^10.9.1",
"typescript-eslint": "^8.0.0"
},
"scripts": {
"antlr4ts": "antlr4ts",
"build": "npm run build-antlr && npm run build-bundle",
"build-antlr": "antlr4ts ./grammar/seshat/SeshatLexer.g4 && antlr4ts ./grammar/seshat/SeshatParser.g4 -visitor -no-listener",
"build-bundle": "node bundle.mjs",
"lint": "eslint .",
"run-dev-server": "node bundle.mjs --serve",
"test": "npm run test-js & npm run test-seshat",
"test-js": "node tests/js/*.mjs",
"test-seshat": "./run-tests.sh"
}
}