-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
33 lines (33 loc) · 992 Bytes
/
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
{
"name": "d3-dot-graph",
"version": "1.0.0",
"description": "D3js compatible library to parse and load files in graphviz .dot (graph description language) format.",
"main": "index.js",
"scripts": {
"test": "mocha test/*.js",
"build": "pegjs --format globals --export-var d3dotparser1 --output src/dot-parser.js grammar/dot.pegjs; rollup -c",
"prepublish": "rollup -c && uglifyjs build/d3-dot-graph.js -c negate_iife=false -m -o build/d3-dot-graph.min.js",
"start": "npm run build"
},
"keywords": [
"dot",
"graphviz",
"d3",
"graph"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gmamaladze/d3-dot-graph.git"
},
"author": "George Mamaladze",
"license": "MIT",
"bugs": {
"url": "https://github.com/gmamaladze/d3-dot-graph/issues"
},
"homepage": "https://github.com/gmamaladze/d3-dot-graph#readme",
"dependencies": {
"pegjs": "^0.10.0",
"rollup": "^0.49.2",
"rollup-watch": "^4.3.1"
}
}