forked from dundalek/GrammKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.44 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.1",
"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": "4.0.1",
"handlebars": "4.5.3",
"jsesc": "2.5.2",
"lodash": "4.17.15",
"ohm-js": "0.14.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.2.6",
"create-react-class": "^15.6.3",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.17.0",
"jest": "25.0.0",
"parcel-bundler": "1.12.4",
"parcel-plugin-pegjs": "github:dundalek/parcel-plugin-pegjs",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"shx": "0.3.2"
},
"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"
}