-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.68 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
56
{
"name": "redux-devtools-profiler-monitor",
"version": "1.0.0",
"description": "A custom monitor for Redux DevTools to profile a given action in Chrome DevTools",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"lint": "eslint src",
"prepublish": "npm run lint && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pbomb/redux-devtools-profiler-monitor.git"
},
"keywords": [
"redux",
"react",
"devtools",
"profiler",
"performance"
],
"author": "Matt Parrish <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pbomb/redux-devtools-profiler-monitor/issues"
},
"homepage": "https://github.com/pbomb/redux-devtools-profiler-monitor#readme",
"devDependencies": {
"babel-cli": "6.14.0",
"babel-core": "6.14.0",
"babel-eslint": "6.1.2",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-transform-flow-strip-types": "6.14.0",
"babel-plugin-transform-react-constant-elements": "6.9.1",
"babel-plugin-transform-react-inline-elements": "6.8.0",
"babel-preset-latest": "6.14.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-2": "6.13.0",
"babel-register": "6.14.0",
"eslint": "3.5.0",
"eslint-config-airbnb": "11.0.0",
"eslint-plugin-import": "1.14.0",
"eslint-plugin-jsx-a11y": "2.2.1",
"eslint-plugin-react": "6.2.0",
"react": "15.3.1",
"redux-devtools": "3.3.1"
},
"peerDependencies": {
"react": ">=15.0.0-0",
"redux-devtools": "^3.0.0"
},
"dependencies": {
"redux-devtools-themes": "1.0.0"
}
}