-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 820 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 820 Bytes
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
{
"name": "dotparser",
"version": "1.1.1",
"description": "Parser of GraphViz dot file format",
"main": "index.js",
"jsdelivr": "dist/dotparser.min.js",
"unpkg": "dist/dotparser.min.js",
"scripts": {
"test": "tap --allow-incomplete-coverage test/*.js",
"build": "pegjs grammar/dot.pegjs && browserify grammar/dot.js -s dotParser -o dist/dotparser.js && uglifyjs dist/dotparser.js -o dist/dotparser.min.js",
"start": "npm run build"
},
"keywords": [
"dot",
"xdot",
"graphviz",
"parser",
"ast"
],
"author": "Andrei Kashcha",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anvaka/dotparser"
},
"devDependencies": {
"browserify": "^17.0.0",
"pegjs": "^0.10.0",
"tap": "^18.1.4",
"uglify-js": "^3.13.10"
}
}