-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.81 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.81 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
{
"name": "react-redux-api-tools",
"version": "2.1.3",
"description": "Middleware and helpers to improve the React-Redux flow when communicating with APIs.",
"main": "index.js",
"scripts": {
"coveralls": "npm run test && cat ./coverage/lcov.info | coveralls",
"lint": "eslint lib/** __tests__/**",
"test": "jest --coverage",
"jest": "jest",
"dist": "NODE_ENV=production ./node_modules/.bin/babel lib -d dist",
"test_debug": "node --inspect node_modules/.bin/jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/labcodes/react-redux-api-tools.git"
},
"keywords": [
"react",
"redux",
"api",
"tools",
"middleware"
],
"author": "Luciano Ratamero",
"license": "MIT",
"bugs": {
"url": "https://github.com/labcodes/react-redux-api-tools/issues"
},
"homepage": "https://github.com/labcodes/react-redux-api-tools#readme",
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/runtime": "^7.5.4",
"coveralls": "^3.0.5",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.1",
"jest": "^24.8.0",
"jest-fetch-mock": "^2.1.2",
"prettier": "^1.18.2"
},
"jest": {
"automock": false,
"setupFiles": [
"<rootDir>/setupJest.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run dist && npm run test"
}
}
}