-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 972 Bytes
/
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
{
"name": "redux-action-router",
"version": "0.2.0",
"description": "A redux middleware that implements a simple, bidirectional mapping between url routes and actions or action creators.",
"main": "dist/index.js",
"repository": "github:itaylor/redux-action-router",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --ui tdd --compilers js:babel-register"
},
"keywords": [
"redux",
"middleware",
"action",
"route",
"routing"
],
"author": "ian.b.taylor@gmail.com",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.3.26",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"expect": "^1.13.4",
"gulp": "^3.9.0",
"gulp-babel": "^6.0.0",
"jsdom": "^7.0.2",
"mocha": "^2.3.3",
"redux": "^3.0.3",
"redux-thunk": "^1.0.0"
},
"dependencies": {
"next-tick": "^0.2.2",
"url-mapper": "^0.5.2"
}
}