-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 936 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 936 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
33
34
{
"name": "d3-relation-graph",
"version": "0.1.0",
"description": "A force map based on D3.js to show the relation.",
"scripts": {
"build": "./node_modules/.bin/babel src/d3-relation-graph.js --out-file dist/js/d3-relation-graph.min.js"
},
"main": "index.js",
"keywords": [
"force map",
"d3.js",
"knowledge graph",
"nodes graph",
"relation graph"
],
"repository": {
"type": "git",
"url": "https://github.com/Duncanxyz/d3-relation-graph"
},
"private": false,
"author": "cyx",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"d3": "^5.7.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"babel-preset-minify": "^0.5.0"
}
}