-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.09 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
{
"name": "ducks-middleware",
"version": "1.0.2",
"description": "function that creates a middleware function from many ducks",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drpicox/ducks-middleware.git"
},
"keywords": [
"redux",
"middleware",
"createStore",
"ducks-modular-redux",
"modules",
"applyMiddleware"
],
"author": "David Rodenas <david.rodenas@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/drpicox/ducks-middleware/issues"
},
"homepage": "https://github.com/drpicox/ducks-middleware#readme",
"devDependencies": {
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.1.2",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"redux": "^4.0.1"
},
"peerDependencies": {
"redux": "1.x || 2.x || 3.x || 4.x"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true
}
}