-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
56 lines (56 loc) · 1.42 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
54
55
56
{
"name": "grammkit",
"version": "0.7.2",
"description": "A tool to generate diagrams for parser grammars",
"main": "grammkit.js",
"scripts": {
"lint": "eslint --report-unused-disable-directives .",
"dev": "parcel --no-cache app/index.html",
"build": "rm -rf dist/* && parcel build --public-url ./ -d dist app/index.html && shx cp -r examples dist",
"test": "jest --coverage"
},
"bin": "./cli.js",
"dependencies": {
"commander": "^6.2.1",
"handlebars": "^4.7.7",
"jsesc": "^3.0.2",
"lodash": "^4.17.21",
"ohm-js": "^15.5.0",
"pegjs": "^0.10.0",
"railroad-diagrams": "^1.0.0",
"whitescape": "^0.5.0"
},
"devDependencies": {
"bootstrap-css-only": "^3.3.7",
"browser-request": "^0.3.3",
"classnames": "^2.3.2",
"create-react-class": "^15.6.3",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.17.0",
"jest": "^29.5.0",
"parcel-bundler": "^1.12.5",
"parcel-plugin-pegjs": "^0.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"shx": "^0.3.4"
},
"repository": {
"type": "git",
"url": "https://github.com/dundalek/GrammKit"
},
"keywords": [
"railroad",
"syntax",
"diagram",
"parser",
"grammar",
"generator",
"svg"
],
"author": "Jakub Dundalek",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/dundalek/GrammKit/issues"
},
"homepage": "https://github.com/dundalek/GrammKit"
}