-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
37 lines (37 loc) · 1.03 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
{
"name": "redux-injector",
"version": "0.1.0",
"description": "Allows dynamically injecting reducers into a redux store at runtime.",
"main": "lib/ReduxInjector.js",
"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-injector.git"
},
"keywords": [
"redux",
"react"
],
"author": "Randall Knutson <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/randallknutson/redux-injector/issues"
},
"homepage": "https://github.com/randallknutson/redux-injector#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"eslint": "^3.9.1"
},
"dependencies": {
"lodash": "^4.x",
"redux": "^3.x"
}
}