-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 1.5 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
{
"name": "vitest-fetch-mock",
"version": "0.4.2",
"description": "fetch mock for vitest",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist/**.*"
],
"scripts": {
"type-check": "tsc",
"test": "vitest run",
"test:watch": "vitest run --watch",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"format": "prettier src tests --write",
"format:check": "prettier src tests --check",
"build": "tsc -p tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IanVS/vitest-fetch-mock.git"
},
"keywords": [
"vitest",
"mock",
"fetch"
],
"author": {
"name": "Ian VanSchooten",
"email": "[email protected]"
},
"contributors": [
{
"name": "Jeff Lau",
"email": "[email protected]",
"url": "http://jefflau.net/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/IanVS/vitest-fetch-mock/issues"
},
"homepage": "https://github.com/IanVS/vitest-fetch-mock#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitest/coverage-v8": "^2.1.3",
"eslint": "^8.56.0",
"jsdom": "^24.1.0",
"prettier": "^3.3.2",
"typescript": "~5.5.0",
"vitest": "^2.1.3"
},
"peerDependencies": {
"vitest": ">=2.0.0"
}
}