-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "redux-view",
"version": "0.2.1",
"description": "A view wrapper for Redux and React-Router that makes it easy to map and transition between routes.",
"main": "lib/ReduxView.js",
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel ./src --ignore=*.spec.js --out-dir ./lib --presets es2015,react,stage-2",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/randallknutson/redux-view.git"
},
"keywords": [
"redux",
"react-redux",
"react-router"
],
"author": "Randall Knutson <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/randallknutson/redux-view/issues"
},
"homepage": "https://github.com/randallknutson/redux-view#readme",
"peerDependencies": {
"lodash": "4.x",
"react-redux": "4.x",
"react-router": ">=2.0.0 || ^4.0.0-alpha.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.17.0"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}