-
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) · 1001 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 1001 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "react-svg-graph",
"version": "1.2.0",
"description": "An SVG-based graph component for React",
"author": "Jonathan Warning",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jwarning/react-svg-graph"
},
"files": [
"dist",
"src",
"index.js",
"README.md"
],
"main": "dist/index.js",
"scripts": {
"build": "webpack --config webpack.config.js && webpack --config webpack.config.example.js",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"react": "^15.0.2",
"react-addons-pure-render-mixin": "^15.0.2",
"react-dom": "^15.0.2",
"webpack": "^1.13.0"
},
"peerDependencies": {
"react": ">=15.0.0"
},
"tags": [
"react",
"graph",
"svg"
],
"keywords": [
"react",
"graph",
"svg",
"bar",
"line",
"dynamic"
]
}