-
Notifications
You must be signed in to change notification settings - Fork 119
/
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.1.0",
"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.1.8",
"domexception": "^4.0.0",
"promise-polyfill": "^8.3.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.27",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"regenerator-runtime": "^0.14.1",
"typescript": "^5.4.2"
},
"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"
]
}
}