-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "redux-devtools-dispatch",
"version": "2.2.1",
"description": "Dispatch your actions manually to test if your app reacts well",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/YoruNoHikage/redux-devtools-dispatch.git"
},
"keywords": [
"redux",
"devtools",
"dispatch",
"actions",
"manually"
],
"author": "Alexis Launay <yorunohikage@gmail.com> (http://github.com/YoruNoHikage)",
"license": "MIT",
"bugs": {
"url": "https://github.com/YoruNoHikage/redux-devtools-dispatch/issues"
},
"homepage": "https://github.com/YoruNoHikage/redux-devtools-dispatch",
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-core": "^6.1.20",
"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",
"rimraf": "^2.3.4",
"webpack": "^1.11.0"
},
"peerDependencies": {
"react": ">=0.14.9",
"redux-devtools": "^3.0.0"
},
"dependencies": {
"get-params": "^0.1.2",
"prop-types": "^15.5.10",
"redux-devtools-themes": "^1.0.0"
}
}