-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
28 lines (28 loc) · 1018 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
{
"name": "antlr4-javascript-examples",
"version": "1.0.0",
"description": "An example of an parser generated with ANTLR4.",
"scripts": {
"start": "npm run cymbol",
"cymbol": "http-server browser-example",
"csv-to-array": "node --harmony --harmony_destructuring csv-to-array.js",
"expr": "node --harmony --harmony_destructuring expr.js",
"build": "npm run build-cymbol && npm run build-csv && npm run build-expr",
"build-cymbol": "antlr4 -Dlanguage=JavaScript browser-example/Cymbol.g4 -o browser-example/parser",
"build-csv": "antlr4 -Dlanguage=JavaScript CSV.g4 -o parsers/csv",
"build-expr": "antlr4 -Dlanguage=JavaScript Expr.g4 -o parsers/expr",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Michael Maier",
"repository": {
"type": "git",
"url": "https://github.com/maiermic/antlr4-javascript-examples"
},
"license": "ISC",
"dependencies": {
"antlr4": "^4.5.2"
},
"devDependencies": {
"http-server": "^0.9.0"
}
}