forked from reduxjs/redux-devtools-chart-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.5 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
53
54
55
{
"name": "redux-devtools-chart-monitor",
"version": "1.7.0",
"description": "Chart monitor for Redux DevTools",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"build": "babel src --out-dir lib",
"lint": "eslint src",
"prepublish": "npm run lint && npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/reduxjs/redux-devtools-chart-monitor.git"
},
"keywords": [
"redux",
"devtools",
"flux",
"react",
"chart"
],
"author": "romseguy",
"license": "MIT",
"bugs": {
"url": "https://github.com/reduxjs/redux-devtools-chart-monitor/issues"
},
"homepage": "https://github.com/reduxjs/redux-devtools-chart-monitor",
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-core": "^6.1.20",
"babel-eslint": "^5.0.0-beta4",
"babel-loader": "^6.2.0",
"babel-preset-es2015-loose": "^6.1.3",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"eslint": "^0.23",
"eslint-config-airbnb": "0.0.6",
"eslint-plugin-react": "^3.6.3",
"rimraf": "^2.3.4",
"webpack": "^1.11.0"
},
"peerDependencies": {
"react": "^0.14.3 || ^16.2.0",
"react-dom": "^0.14.3 || ^16.2.0",
"redux-devtools": "^3.0.0"
},
"dependencies": {
"d3-state-visualizer": "git+https://github.com/red-armor/d3-state-visualizer",
"deepmerge": "^0.2.10",
"prop-types": "^15.6.0",
"react-pure-render": "^1.0.2",
"redux-devtools-themes": "^1.0.0"
}
}