-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
61 lines (61 loc) · 1.75 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
57
58
59
60
61
{
"name": "redux-devtools-filter-actions",
"version": "1.2.2",
"description": "A composable monitor for Redux DevTools with the ability to filter actions.",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"lint": "eslint src test",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive",
"test:watch": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive --watch",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/zalmoxisus/redux-devtools-filter-actions.git"
},
"keywords": [
"redux",
"devtools",
"flux",
"react",
"hot reloading",
"time travel",
"live edit"
],
"author": "Mihail Diordiev <[email protected]> (https://github.com/zalmoxisus)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zalmoxisus/redux-devtools-filter-actions/issues"
},
"homepage": "https://github.com/zalmoxisus/redux-devtools-filter-actions",
"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",
"expect": "^1.6.0",
"mocha": "^2.2.5",
"mocha-jsdom": "^1.0.0",
"prop-types": "^15.5.8",
"rimraf": "^2.3.4",
"webpack": "^1.11.0"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0",
"redux-devtools": "^3.4.0"
},
"dependencies": {
"lodash": "^4.12.0"
}
}