-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.82 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
63
64
65
66
67
68
69
{
"name": "msw-dynamic-http-middleware",
"version": "0.9.2",
"description": "Set API handlers for your mock server on runtime",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14"
},
"scripts": {
"start": "tsdx watch --tsconfig tsconfig.tsdx.json",
"build": "npm run build:lib && npm run build:app && npm run copy:app",
"build:lib": "tsdx build --tsconfig tsconfig.tsdx.json",
"build:app": "cd msw-ui && npm run build",
"copy:app": "cp -r msw-ui/dist -r dist/ui",
"test": "tsdx test",
"lint": "tsdx lint",
"server": "",
"prepublish": "npm run lint && npm run test && npm run build",
"deploy:example": "git subtree split --prefix example -b example && git push -f heroku example:main && git branch -D example"
},
"module": "dist/msw-dynamic-http-middleware.esm.js",
"keywords": [
"msw",
"http-middleware",
"rest",
"mocks"
],
"author": "Frank van Wijk <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/fvanwijk/msw-http-dynamic-middleware.git"
},
"license": "MIT",
"prettier": {
"arrowParens": "avoid",
"semi": true,
"singleQuote": true,
"printWidth": 120,
"trailingComma": "all"
},
"dependencies": {
"pino": "6.13.0",
"pino-pretty": "5.1.2"
},
"devDependencies": {
"@mswjs/http-middleware": "0.1.1",
"@open-draft/test-server": "0.2.3",
"@types/jest": "26.0.24",
"@types/node-fetch": "2.5.12",
"@types/pino": "6.3.11",
"msw": "0.33.1",
"node-fetch": "2.6.1",
"prettier": "1.19.1",
"ts-node": "10.1.0",
"tsdx": "0.14.1",
"tslib": "1.14.1",
"typescript": "4.3.5"
},
"peerDependencies": {
"@mswjs/http-middleware": ">=0.1.1",
"express": ">=4",
"msw": ">=0.25"
}
}