-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.2 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.2 KB
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
46
47
48
{
"name": "replot-network",
"version": "0.3.0",
"description": "Network chart components for Replot",
"main": "index.js",
"scripts": {
"watch": "cd examples && webpack --watch",
"build-umd": "webpack src/index.js umd/replot-network.js",
"compile": "webpack --output-filename index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/replot/replot-network.git"
},
"keywords": [
"react",
"visualization",
"network",
"chart"
],
"author": "Alisa Ono",
"license": "MIT",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"bugs": {
"url": "https://github.com/replot/replot-network/issues"
},
"homepage": "https://github.com/replot/replot-network#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"radium": "^0.21.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"replot-helpers": "^0.2.0",
"webpack": "^2.2.1"
},
"dependencies": {
"immutable": "^3.8.2",
"prop-types": "^15.6.0",
"replot-core": "^0.2.1"
}
}