forked from crubier/react-graph-vis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 963 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
34
35
36
37
38
39
{
"name": "react-graph-vis",
"version": "1.0.5",
"description": "A react component to render nice graphs using vis.js",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel -d lib/ src/",
"watch": "babel --watch -d lib/ src/",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/crubier/react-graph-vis.git"
},
"keywords": [
"react-component",
"react",
"graph",
"network",
"jsx"
],
"author": "Vincent Lecrubier <vincent.lecrubier@gmail.com> (http://www.vincentlecrubier.fr/)",
"license": "MIT",
"peerDependencies": {
"react": "*"
},
"dependencies": {
"lodash": "^4.17.15",
"prop-types": "^15.5.10",
"uuid": "^2.0.1",
"vis-network": "^5.1.1"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-env": "^1.1.8",
"babel-preset-stage-3": "^6.22.0"
}
}