-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
53 lines (53 loc) · 1.5 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
44
45
46
47
48
49
50
51
52
53
{
"name": "ebnf2railroad",
"version": "1.14.1",
"description": "EBNF to Railroad diagram",
"keywords": [
"ebnf",
"context-free grammar",
"railroad",
"railroad diagram",
"syntax diagram",
"diagram",
"documentation",
"generator",
"cli"
],
"main": "src/main.js",
"repository": "[email protected]:matthijsgroen/ebnf2railroad.git",
"author": "Matthijs Groen <[email protected]>",
"license": "MIT",
"bin": {
"ebnf2railroad": "./bin/ebnf2railroad.js"
},
"scripts": {
"build-parser": "jison src/ebnf.jison -o src/ebnf-parser.js",
"test": "mocha --recursive",
"lint": "eslint src/ test/",
"update-examples": "bin/ebnf2railroad.js examples/json.ebnf --title JSON; bin/ebnf2railroad.js examples/ebnf.ebnf --title EBNF; bin/ebnf2railroad.js examples/optimizations.ebnf; bin/ebnf2railroad.js examples/optimizations.ebnf --target examples/optimizations.md",
"publish": ".travis/publish-site.sh"
},
"private": false,
"files": [
"src/*",
"bin/*"
],
"dependencies": {
"commander": "^2.19.0",
"prettier": "2.8.4",
"railroad-diagrams": "https://github.com/tabatkins/railroad-diagrams#c7730b8fab6cb0fd55fc3c3b0a81ce355fdbf963",
"showdown": "^1.0.0",
"utf-railroad": "^1.0.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.0.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"jison": "^0.4.18",
"mocha": "^8.0.0"
},
"resolutions": {
"minimist": "^1.2.3"
}
}