This repository has been archived by the owner on Apr 12, 2023. It is now read-only.
forked from jefflau/jest-fetch-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.55 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
{
"name": "jest-fetch-mock",
"version": "3.0.3",
"description": "fetch mock for jest",
"main": "src/index.js",
"types": "types",
"scripts": {
"test": "jest && yarn tsc && yarn lint",
"lint": "eslint .",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jefflau/jest-fetch-mock.git"
},
"keywords": [
"jest",
"mock",
"fetch"
],
"author": "Jeff Lau <jeff-lau@live.com> (http://jefflau.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jefflau/jest-fetch-mock/issues"
},
"homepage": "https://github.com/jefflau/jest-fetch-mock#readme",
"dependencies": {
"cross-fetch": "^3.0.6",
"domexception": "^2.0.1",
"promise-polyfill": "^8.1.3"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^10.17.40",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.11.0",
"jest": "^26.6.0",
"prettier": "^2.1.2",
"regenerator-runtime": "^0.13.7",
"typescript": "^4.0.3"
},
"prettier": {
"semi": false,
"arrowParens": "always",
"editor.formatOnSave": true,
"singleQuote": true,
"trailingComma": "es5",
"overrides": [
{
"files": "**/*.ts",
"options": {
"semi": true,
"tabWidth": 4,
"singleQuote": false,
"printWidth": 125
}
}
]
},
"jest": {
"automock": false,
"testPathIgnorePatterns": [
"types"
],
"setupFiles": [
"./setupJest.js"
]
}
}