-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "@codeceptjs/msw-mock-server",
"version": "1.1.1",
"description": "Mock Server helper for CodeceptJS - powered by msw",
"main": "index.js",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"buildcjs": "rollup index.js --file index.cjs --format cjs",
"docs": "npx documentation readme index.js --section=MockServer --shallow"
},
"author": "[email protected]",
"license": "MIT",
"type": "module",
"jest": {
"transform": {}
},
"dependencies": {
"msw": "^2.6.0"
},
"devDependencies": {
"jest": "^29.7.0",
"rollup": "^4.24.4",
"documentation": "11.0.1"
},
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"files": [
"index.cjs",
"index.js",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codeceptjs/msw-mock-server.git"
},
"bugs": {
"url": "https://github.com/codeceptjs/msw-mock-server/issues"
},
"homepage": "https://github.com/codeceptjs/msw-mock-server#readme"
}