forked from jefflau/jest-fetch-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 856 Bytes
/
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
{
"name": "shtaft-jest-fetch-mock",
"version": "1.6.4",
"description": "fetch mock for jest",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shtaft/jest-fetch-mock.git"
},
"keywords": [
"jest",
"mock",
"fetch"
],
"author": "Simon Taft <taft.simon@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shtaft/jest-fetch-mock/issues"
},
"homepage": "https://github.com/shtaft/jest-fetch-mock#readme",
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"promise-polyfill": "^7.1.1"
},
"devDependencies": {
"@types/jest": "^23.0.0"
},
"prettier": {
"semi": false,
"editor.formatOnSave": true,
"singleQuote": true
}
}