forked from tabatkins/railroad-diagrams
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.6 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
57
58
59
60
61
62
63
64
{
"name": "@prantlf/railroad-diagrams",
"version": "0.0.0-development",
"description": "JavaScript library and command-line tools for drawing railroad syntax diagrams to SVG.",
"repository": {
"type": "git",
"url": "https://github.com/prantlf/railroad-diagrams.git"
},
"author": "Ferdinand Prantl <[email protected]> (http://prantl.tk)",
"contributors": [
"Tab Atkins Jr. <[email protected]> (http://xanthir.com)"
],
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/prantlf/railroad-diagrams/issues"
},
"homepage": "https://github.com/prantlf/railroad-diagrams",
"engines": {
"node": ">=6"
},
"files": [
"bin",
"lib",
"railroad-diagrams.css"
],
"bin": {
"rrd2svg": "bin/rrd2svg",
"rrdlint": "bin/rrdlint"
},
"main": "lib/index.js",
"browser": "lib/index.umd.js",
"module": "lib/index.mjs",
"keywords": [
"railroad",
"syntax",
"diagrams",
"grammar",
"svg"
],
"scripts": {
"benchmark": "node -r esm benchmark",
"prepare": "rollup -c rollup.config.js",
"start": "rollup -c rollup.config.js -w",
"pretest": "eslint rollup.config.js railroad.js rrd2svg.js rrdlint.js benchmark/*.js",
"test": "node bin/rrdlint -v examples/* && node bin/rrd2svg examples/ident.yml"
},
"release": {
"branches": [
"gh-pages"
]
},
"dependencies": {
"js-yaml": "3.13.1",
"tiny-glob": "0.2.6"
},
"devDependencies": {
"benchmark": "2.1.4",
"eslint": "6.8.0",
"esm": "3.2.25",
"rollup": "2.7.2",
"rollup-plugin-cleanup": "3.1.1",
"rollup-plugin-terser": "5.3.0"
}
}