-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.11 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
{
"name": "redux-dynamic",
"version": "1.3.1",
"description": "Allow add or remove redux modules dynamically",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src/ --fix",
"build": "babel -d lib/ src/",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pofigizm/redux-dynamic.git"
},
"keywords": [
"redux",
"dynamic",
"middleware"
],
"author": "Denis Iogansen",
"license": "MIT",
"bugs": {
"url": "https://github.com/pofigizm/redux-dynamic/issues"
},
"homepage": "https://github.com/pofigizm/redux-dynamic",
"dependencies": {
"redux": ">=3.0.0",
"redux-dynamic-middlewares": ">=1.0.0",
"redux-thunk": ">=2.0.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-jest": "23.6.0",
"babel-preset-pofigizm": "1.0.0",
"eslint": "5.14.1",
"eslint-config-pofigizm": "1.0.0",
"jest": "23.6.0"
},
"babel": {
"presets": [
[
"pofigizm",
{
"library": true
}
]
]
},
"eslintConfig": {
"extends": "pofigizm"
}
}