-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
46
47
48
49
50
51
52
{
"name": "replot-line",
"version": "0.6.0",
"description": "Replot line chart React component",
"main": "index.js",
"directories": {
"doc": "docs",
"example": "examples"
},
"scripts": {
"build-umd": "webpack src/index.js umd/replot-line.js",
"watch": "cd examples && webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/replot/replot-line.git"
},
"keywords": [
"react",
"SVG",
"linechart",
"visualization",
"chart"
],
"author": "Ariel Skye Levy",
"license": "MIT",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"bugs": {
"url": "https://github.com/replot/replot-line/issues"
},
"homepage": "https://github.com/replot/replot-line#readme",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"eslint": "^3.16.1",
"eslint-plugin-react": "^6.10.0",
"radium": "^0.18.2",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"webpack": "^2.2.1"
},
"dependencies": {
"humanize-plus": "^1.8.2",
"prop-types": "^15.5.10",
"react-motion": "^0.4.7",
"replot-core": "^0.2.1"
}
}