-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.67 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.67 KB
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
81
82
{
"name": "redux-load-error",
"version": "1.0.3",
"description": "Pre-reducer for UI reducers that can be loading or have an error",
"homepage": "https://github.com/MarcoScabbiolo/redux-load-error",
"author": {
"name": "Marco Scabbiolo",
"email": "scabbiolo.marco@gmail.com",
"url": ""
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"redux",
"pre-reducer",
"loading",
"load",
"error"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.0.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"coveralls": "^2.13.1",
"eslint": "^4.1.0",
"eslint-config-prettier": "^2.4.0",
"eslint-config-xo": "^0.18.2",
"eslint-plugin-prettier": "^2.2.0",
"husky": "^0.14.3",
"jest": "^21.0.0",
"jest-cli": "^21.0.0",
"lint-staged": "^4.2.1",
"prettier": "^1.7.0",
"redux": "^3.7.2"
},
"scripts": {
"pretest": "eslint .",
"precommit": "lint-staged",
"test": "jest --coverage"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": [
"prettier"
]
},
"repository": "https://github.com/MarcoScabbiolo/redux-load-error.git",
"jest": {
"testEnvironment": "node"
},
"license": "MIT"
}