-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.58 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
{
"name": "msw-inspector",
"version": "3.2.0",
"description": "Inspect requests intercepted by MSW",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc -p tsconfig.build.json",
"test": "vitest --config ./vitest.config.mts --dir ./src",
"test:source": "npm run test:format && npm run test:ts && npm t -- --watch=false",
"test:ts": "tsc --noEmit",
"test:format": "npm run prettier",
"preversion": "npm run prepare",
"version": "git add package.json",
"postversion": "git push && git push --tags",
"prepare": "npx simple-git-hooks && npm run test:source && npm run build",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"keywords": [
"msw",
"api",
"mock",
"mocking",
"request",
"assertion"
],
"repository": {
"type": "git",
"url": "git+https://github.com/toomuchdesign/msw-inspector.git"
},
"author": "Andrea Carraro <[email protected]>",
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@tsconfig/node18": "^18.2.2",
"@types/qs": "^6.9.7",
"@vitest/coverage-v8": "^2.0.2",
"msw": "^2.0.0",
"prettier": "^3.0.0",
"simple-git-hooks": "^2.0.0",
"typescript": "^5.1.3",
"vitest": "^2.0.2"
},
"peerDependencies": {
"msw": "^2.0.0"
},
"simple-git-hooks": {
"pre-commit": "npm run test:source"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"path-to-regexp": "^7.1.0",
"qs": "^6.11.2"
}
}