-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.41 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
{
"name": "jest-mock-fetch",
"version": "2.0.5",
"description": "Synchronous `fetch` mock for Jest",
"main": "dist/mock-fetch.js",
"types": "dist/mock-fetch.d.ts",
"scripts": {
"clean": "rimraf ./dist",
"lint": "tslint -c tslint.json 'lib/**/*.ts'",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel lib --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"deploy2npm": "npm run build && npm publish",
"test": "jest --watch --"
},
"repository": {
"type": "git",
"url": "git+https://github.com/knee-cola/jest-mock-fetch.git"
},
"keywords": [
"fetch",
"jest",
"mock"
],
"author": "knee-cola <nikola.derezic@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/knee-cola/jest-mock-fetch/issues"
},
"homepage": "https://github.com/knee-cola/jest-mock-fetch#readme",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@types/jest": "^27.0.3",
"babel-loader": "^8.2.3",
"jest": "^27.4.5",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"tslint": "^6.1.3",
"typescript": "^4.5.4"
},
"dependencies": {
"jest-mock-promise": "^2.0.2"
}
}