forked from codeout/inet-henge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"private": true,
"name": "inet-henge",
"version": "1.0.0",
"description": "Generate d3.js based Network Diagram from JSON data.",
"license": "MIT",
"keywords": [
"network",
"diagram",
"d3.js",
"cola.js"
],
"repository": {
"type": "git",
"url": "git://github.com/codeout/inet-henge.git"
},
"bugs": {
"url": "https://github.com/codeout/inet-henge/issues"
},
"author": {
"name": "Shintaro Kojima",
"email": "goodies@codeout.net",
"url": "http://github.com/codeout"
},
"main": "inet-henge.js",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babelify": "^8.0.0",
"browserify": "^16.2.3",
"eslint": "^5.10.0",
"watchify": "^3.11.1"
},
"scripts": {
"lint": "./node_modules/.bin/eslint src",
"build": "./node_modules/.bin/browserify -t babelify src/diagram.js -o inet-henge.js",
"watch": "./node_modules/.bin/watchify src/*.js -t babelify src/diagram.js -o inet-henge.js -v"
},
"babel": {
"presets": [
"env"
]
}
}