-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.38 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "stubborn-fetch",
"version": "0.2.8",
"description": "Fetch wrapper with built in retry",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"build": "./node_modules/.bin/rollup -c",
"start": "./node_modules/.bin/rollup -c -w",
"flow": "./node_modules/.bin/flow",
"jest": "./node_modules/.bin/jest --watch --colors",
"lint": "node ./node_modules/.bin/eslint src/",
"prepublish": "npm run build",
"test": "./node_modules/.bin/flow && ./node_modules/.bin/jest && node ./node_modules/eslint/bin/eslint.js src/ --quiet",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.js": [
"./node_modules/.bin/prettier --write",
"git add"
]
},
"pre-commit": "lint-staged",
"repository": {
"type": "git",
"url": "git+https://github.com/Quiq/stubborn-fetch.git"
},
"keywords": [
"fetch",
"retry"
],
"author": "Quiq",
"license": "MIT",
"jest": {
"moduleDirectories": [
"src",
"node_modules"
],
"testEnvironmentOptions": {
"resources": "usable"
},
"setupFiles": [
"./jest.setup.js"
],
"testURL": "http://localhost/"
},
"bugs": {
"url": "https://github.com/Quiq/stubborn-fetch/issues"
},
"homepage": "https://github.com/Quiq/stubborn-fetch#readme",
"dependencies": {
"extendable-error-class": "0.1.1",
"isomorphic-fetch": "3.0.0"
},
"devDependencies": {
"ajv": "^6.4.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"fetch-mock": "^6.3.0",
"flow-bin": "^0.69.0",
"husky": "^0.14.3",
"jest": "^27.5.1",
"lint-staged": "^6.0.0",
"lodash": "^4.17.5",
"prettier": "^1.11.0",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^3.3.0"
},
"files": [
"dist"
],
"resolutions": {
"mem": "4.0.0",
"ansi-regex": "5.0.1"
}
}