-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 1.79 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "redux-api-unrest",
"version": "0.9.4",
"description": "A redux reducer for unrest.",
"main": "lib/index.js",
"module": "src/index.js",
"repository": "https://github.com/Kozea/redux-api-unrest",
"author": "Florian Mounier",
"license": "MIT",
"scripts": {
"build": "rimraf lib && babel src --out-dir lib",
"lint": "eslint src",
"test": "jest --coverage",
"coverage": "cat ./coverage/lcov.info | coveralls",
"test-debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"prepublish": "npm run build"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json"
],
"modulePaths": [
"<rootDir>/src"
],
"moduleDirectories": [
"node_modules"
],
"setupFiles": [
"<rootDir>/test/setup.js"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/ponyfill.js"
]
},
"pre-commit": "lint,test",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"coveralls": "^3.1.0",
"eslint": "^7.2.0",
"eslint-plugin-import": "^2.21.2",
"jest": "^26.0.1",
"pre-commit": "^1.2.2",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"rimraf": "^3.0.2"
},
"files": [
"lib/",
"src/"
],
"importSort": {
".js, .jsx": {
"parser": "babylon",
"style": "module"
}
},
"dependencies": {
"@babel/runtime": "^7.10.2",
"abortcontroller-polyfill": "^1.4.0",
"deep-equal": "^2.0.3",
"isomorphic-fetch": "^2.2.1",
"path-to-regexp": "^6.1.0",
"qs": "^6.9.4"
}
}