-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 917 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
38
39
40
41
42
43
{
"name": "metch-fock",
"version": "1.1.0",
"type": "module",
"license": "MIT",
"description": "A `fetch` mock library",
"exports": {
".": "./dist/index.js"
},
"types": "./dist/types/index.d.ts",
"files": [
"dist",
"CHANGELOG.md"
],
"keywords": [
"node",
"fetch",
"mock",
"test"
],
"homepage": "https://github.com/mapado/metch-fock#readme",
"bugs": {
"url": "https://github.com/mapado/metch-fock/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mapado/metch-fock.git"
},
"scripts": {
"test": "vitest",
"lint": "npm run lint:types",
"lint:types": "tsc --noEmit",
"build": "rm -rf dist; tsc",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^20.8.3",
"jsdom": "^22.1.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vitest": "^1.0.0-beta.1"
}
}