-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.44 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
54
55
56
57
58
59
60
61
62
{
"name": "redux-create-request",
"version": "3.0.0",
"description": "A helper to make requests connected with redux without stress",
"repository": {
"type": "git",
"url": "https://github.com/andre-araujo/redux-create-request"
},
"keywords": [
"react",
"reactjs",
"redux",
"request",
"rest",
"loading",
"load",
"middleware"
],
"main": "./dist/redux-create-request.js",
"author": "andre-araujo <[email protected]>",
"license": "MIT",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"commit": "git-cz",
"lint:fix": "eslint ./src --fix",
"lint": "eslint ./src",
"test": "jest --no-cache",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.6.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"jest": "^21.1.0",
"microbundle": "^0.6.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"verbose": true,
"transformIgnorePatterns": [
"/node_modules/"
],
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 70,
"lines": 70,
"statements": 70
}
}
}
}