-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
49 lines (49 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
{
"name": "redux-devtools-diff-monitor",
"version": "5.0.4",
"description": "A monitor for Redux Devtools that diffs the redux store mutations between actions for a more concise view into your application's lifecycle.",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && babel src --out-dir lib",
"prepublish": "npm run build",
"test": "mocha test/ --compilers js:babel-core/register",
"lint": "eslint ./src/** --quiet"
},
"repository": "https://github.com/whetstone/redux-devtools-diff-monitor.git",
"author": "iktl | gtfiorentino",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"chai": "^3.3.0",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^7.0.0",
"eslint-plugin-jsx-a11y": "^0.6.2",
"eslint-plugin-react": "^4.3.0",
"jsdom": "^8.3.1",
"mocha": "^2.3.3",
"react": "^15.0.1",
"react-addons-test-utils": "^15.0.1",
"react-dom": "^15.0.1",
"redux-devtools": "^3.2.0",
"rimraf": "^2.5.0",
"should": "^8.3.0"
},
"dependencies": {
"aphrodite": "^0.2.0",
"deep-diff": "^0.3.2",
"immutable": "^3.7.6",
"react-json-tree": "^0.6.5"
},
"peerDependencies": {
"redux-devtools": "^3.0.0",
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.5 || ^15.0.0"
}
}