-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "jest-mock-axios",
"version": "4.8.0",
"description": "Axios mock for Jest",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"scripts": {
"clean": "rimraf ./dist",
"lint": "tslint -c tslint.json 'lib/**/*.ts' 'test/**/*.ts'",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "tsup lib/index.ts --format cjs,esm --dts --clean",
"deploy2npm": "npm run build && npm publish",
"test": "jest --watch",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/knee-cola/jest-mock-axios.git"
},
"keywords": [
"axios",
"jest",
"mock"
],
"author": "knee-cola <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/knee-cola/jest-mock-axios/issues"
},
"homepage": "https://github.com/knee-cola/jest-mock-axios#readme",
"devDependencies": {
"@types/jest": "~29.5.14",
"cross-env": "^7.0.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"tslint": "^6.1.3",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"dependencies": {
"@jest/globals": "^29.7.0",
"jest": "~29.7.0",
"synchronous-promise": "^2.0.17"
}
}