-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.4 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
{
"name": "js_antlr4_book",
"type": "module",
"version": "0.0.1",
"description": "I'm working through some of the [*The Definitive ANTLR4 Reference*](https://pragprog.com/titles/tpantlr2/the-definitive-antlr-4-reference/) book examples using the [JavaScript ANTLR4 runtime](https://github.com/antlr/antlr4/blob/master/doc/javascript-target.md) instead of the Java runtime. Note that the original example source code (all of the non .js files) was obtained from the [ANTLR4 book website](https://pragprog.com/titles/tpantlr2/the-definitive-antlr-4-reference/) and is covered by its own copyright.",
"main": "grun.js",
"bin": {
"grunjs": "grun.js"
},
"directories": {
"example": "examples"
},
"dependencies": {
"antlr4": "^4.9.1",
"commander": "^6.1.0",
"open": "^7.3.0"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mgreminger/js_antlr4_book.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mgreminger/js_antlr4_book/issues"
},
"homepage": "https://github.com/mgreminger/js_antlr4_book#readme"
}