-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "antlr-calculator",
"version": "1.0.5",
"license": "MIT",
"main": "./index.js",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/GeorgDangl/antlr-calculator.git"
},
"scripts": {
"build": "tsc && npm run webpack",
"webpack": "webpack --mode production",
"tsc": "tsc",
"test": "karma start karma.conf.js",
"test:ci": "karma start karma.conf.ci.js",
"antlr4ts": "antlr4ts -visitor -o ./src/GeneratedAntlr ./src/Calculator.g4"
},
"dependencies": {
"antlr4ts": "0.5.0-alpha.4"
},
"devDependencies": {
"@types/jasmine": "5.1.4",
"antlr4ts-cli": "0.5.0-alpha.4",
"assert": "^2.1.0",
"jasmine-core": "^5.3.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-html-reporter": "0.2.7",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-junit-reporter": "~2.0.1",
"karma-typescript": "5.5.4",
"karma-webpack": "^5.0.1",
"terser-webpack-plugin": "5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}