-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.69 KB
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
65
66
67
68
69
{
"name": "msw-inspector-cli",
"version": "0.3.2",
"description": "Find gaps in your MSW mock coverage.",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/felmonon/msw-inspector.git"
},
"homepage": "https://github.com/felmonon/msw-inspector#readme",
"bugs": {
"url": "https://github.com/felmonon/msw-inspector/issues"
},
"publishConfig": {
"access": "public"
},
"bin": {
"msw-inspector": "dist/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"schema",
"README.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup src/index.ts src/cli.ts src/github-action/index.ts --format cjs --dts --out-dir dist --clean",
"build:action": "esbuild src/github-action/index.ts --bundle --platform=node --target=node20 --outfile=dist/action/index.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"check": "npm run typecheck && npm run test",
"prepare": "patch-package",
"prepack": "npm run build"
},
"keywords": [
"msw",
"mock-service-worker",
"test-coverage",
"api-mocking",
"developer-tooling",
"github-action"
],
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/github": "^9.1.1",
"commander": "^15.0.0",
"fast-glob": "^3.3.3",
"path-to-regexp": "^8.4.2",
"picocolors": "^1.1.1",
"ts-morph": "^28.0.0"
},
"devDependencies": {
"@types/node": "^26.1.0",
"ajv": "^8.20.0",
"esbuild": "^0.28.1",
"patch-package": "^8.0.1",
"tsup": "8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.0.18"
},
"overrides": {
"esbuild": "^0.28.1"
}
}