forked from jefflau/jest-fetch-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.2 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
{
"name": "jest-fetch-mock",
"version": "2.1.2",
"description": "fetch mock for jest",
"main": "src/index.js",
"types": "types",
"scripts": {
"test": "jest && npm run tsc && npm run dtslint",
"dtslint": "dtslint types",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jefflau/jest-fetch-mock.git"
},
"keywords": [
"jest",
"mock",
"fetch"
],
"author": "Jeff Lau <[email protected]> (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": "^2.2.2",
"promise-polyfill": "^7.1.1"
},
"devDependencies": {
"@types/jest": "^23.3.14",
"@types/node": "^10.12.10",
"babel-core": "^6.26.3",
"babel-jest": "^23.4.2",
"babel-preset-env": "^1.7.0",
"dtslint": "^0.3.0",
"jest": "^23.5.0",
"regenerator-runtime": "^0.12.1",
"typescript": "^3.2.1"
},
"prettier": {
"semi": false,
"editor.formatOnSave": true,
"singleQuote": true
},
"jest": {
"automock": false,
"setupFiles": [
"./setupJest.js"
]
}
}