-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
80 lines (80 loc) · 2.19 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "redux-saga-router",
"version": "2.2.0",
"description": "A router for Redux Saga",
"main": "lib/index.js",
"files": [
"react.js",
"lib",
"src"
],
"scripts": {
"build": "babel src --out-dir lib",
"check": "npm run lint && npm test",
"clean": "rimraf lib",
"lint": "eslint src __tests__",
"prepublish": "npm run clean && npm run build",
"test": "jest",
"watch:test": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jfairbank/redux-saga-router.git"
},
"keywords": [
"redux",
"redux-saga",
"saga",
"router",
"routing",
"history"
],
"author": "Jeremy Fairbank <[email protected]> (http://jeremyfairbank.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jfairbank/redux-saga-router/issues"
},
"homepage": "https://github.com/jfairbank/redux-saga-router#readme",
"dependencies": {
"fsm-iterator": "^1.0.0",
"history": "^4.7.2",
"ruta3": "^2.0.1"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^19.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-export-extensions": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-polyfill": "^6.16.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.16.0",
"babel-runtime": "^6.20.0",
"eslint": "^3.6.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-import-resolver-node": "^0.2.3",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"express": "^4.14.0",
"jest": "^19.0.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"redux": "^3.6.0",
"redux-saga": "^0.16.0",
"redux-saga-test-plan": "^3.4.0",
"rimraf": "^2.5.4",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1"
},
"peerDependencies": {
"redux-saga": ">=0.10.0 <0.17.0"
}
}