-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.18 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
{
"name": "mocks-to-msw",
"version": "0.0.0",
"description": "An adapter that provides mocks generated from the har-to-mocks to the MSW.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"dev": "vitest --watch",
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"test": "vitest run --coverage",
"test:ci": "vitest run --coverage"
},
"author": "Peter Knezek @peterknezek",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/peterknezek/mocks-to-msw.git"
},
"bugs": {
"url": "https://github.com/peterknezek/mocks-to-msw/issues"
},
"homepage": "https://github.com/peterknezek/mocks-to-msw#readme",
"keywords": [
"mock",
"api",
"front-end",
"handler",
"har",
"mocking",
"mocks",
"msw",
"har-to-mocks",
"typescript"
],
"peerDependencies": {
"msw": ">=2"
},
"devDependencies": {
"@vitest/coverage-v8": "^2.1.1",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"release": {
"branches": [
"main",
"next"
]
}
}