@eggjs/mock 7.0.2-beta.17 → 7.0.2-beta.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/start-cluster.js +0 -0
- package/package.json +50 -16
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eggjs/mock",
|
|
3
|
-
"version": "7.0.2-beta.
|
|
3
|
+
"version": "7.0.2-beta.19",
|
|
4
4
|
"description": "mock server plugin for egg",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"egg",
|
|
@@ -59,9 +59,49 @@
|
|
|
59
59
|
"./package.json": "./package.json"
|
|
60
60
|
},
|
|
61
61
|
"publishConfig": {
|
|
62
|
-
"access": "public"
|
|
62
|
+
"access": "public",
|
|
63
|
+
"exports": {
|
|
64
|
+
".": "./dist/index.js",
|
|
65
|
+
"./app": "./dist/app.js",
|
|
66
|
+
"./app/extend/agent": "./dist/app/extend/agent.js",
|
|
67
|
+
"./app/extend/application": "./dist/app/extend/application.js",
|
|
68
|
+
"./app/middleware/cluster_app_mock": "./dist/app/middleware/cluster_app_mock.js",
|
|
69
|
+
"./bootstrap": "./dist/bootstrap.js",
|
|
70
|
+
"./inject_mocha": "./dist/inject_mocha.js",
|
|
71
|
+
"./lib/agent_handler": "./dist/lib/agent_handler.js",
|
|
72
|
+
"./lib/app": "./dist/lib/app.js",
|
|
73
|
+
"./lib/app_handler": "./dist/lib/app_handler.js",
|
|
74
|
+
"./lib/cluster": "./dist/lib/cluster.js",
|
|
75
|
+
"./lib/context": "./dist/lib/context.js",
|
|
76
|
+
"./lib/format_options": "./dist/lib/format_options.js",
|
|
77
|
+
"./lib/inject_context": "./dist/lib/inject_context.js",
|
|
78
|
+
"./lib/mock_agent": "./dist/lib/mock_agent.js",
|
|
79
|
+
"./lib/mock_custom_loader": "./dist/lib/mock_custom_loader.js",
|
|
80
|
+
"./lib/mock_http_server": "./dist/lib/mock_http_server.js",
|
|
81
|
+
"./lib/mock_httpclient": "./dist/lib/mock_httpclient.js",
|
|
82
|
+
"./lib/parallel/agent": "./dist/lib/parallel/agent.js",
|
|
83
|
+
"./lib/parallel/app": "./dist/lib/parallel/app.js",
|
|
84
|
+
"./lib/parallel/util": "./dist/lib/parallel/util.js",
|
|
85
|
+
"./lib/prerequire": "./dist/lib/prerequire.js",
|
|
86
|
+
"./lib/request_call_function": "./dist/lib/request_call_function.js",
|
|
87
|
+
"./lib/restore": "./dist/lib/restore.js",
|
|
88
|
+
"./lib/start-cluster": "./dist/lib/start-cluster.js",
|
|
89
|
+
"./lib/supertest": "./dist/lib/supertest.js",
|
|
90
|
+
"./lib/tmp/empty": "./dist/lib/tmp/empty.js",
|
|
91
|
+
"./lib/types": "./dist/lib/types.js",
|
|
92
|
+
"./lib/utils": "./dist/lib/utils.js",
|
|
93
|
+
"./register": "./dist/register.js",
|
|
94
|
+
"./setup_vitest": "./dist/setup_vitest.js",
|
|
95
|
+
"./package.json": "./package.json"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"scripts": {
|
|
99
|
+
"typecheck": "tsgo --noEmit"
|
|
63
100
|
},
|
|
64
101
|
"dependencies": {
|
|
102
|
+
"@eggjs/extend2": "5.0.2-beta.19",
|
|
103
|
+
"@eggjs/supertest": "9.0.2-beta.19",
|
|
104
|
+
"@eggjs/utils": "5.0.2-beta.19",
|
|
65
105
|
"coffee": "5",
|
|
66
106
|
"detect-port": "^2.1.0",
|
|
67
107
|
"egg-logger": "^3.5.0",
|
|
@@ -71,21 +111,18 @@
|
|
|
71
111
|
"mm": "^4.0.2",
|
|
72
112
|
"sdk-base": "^5.0.1",
|
|
73
113
|
"urllib": "^4.8.2",
|
|
74
|
-
"utility": "^2.5.0"
|
|
75
|
-
"@eggjs/supertest": "9.0.2-beta.17",
|
|
76
|
-
"@eggjs/utils": "5.0.2-beta.17",
|
|
77
|
-
"@eggjs/extend2": "5.0.2-beta.17"
|
|
114
|
+
"utility": "^2.5.0"
|
|
78
115
|
},
|
|
79
116
|
"devDependencies": {
|
|
117
|
+
"@eggjs/errors": "3.0.2-beta.19",
|
|
118
|
+
"@eggjs/tracer": "4.0.2-beta.19",
|
|
80
119
|
"@types/methods": "^1.1.4",
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"egg": "4.1.2-beta.17",
|
|
84
|
-
"@eggjs/tracer": "4.0.2-beta.17"
|
|
120
|
+
"egg": "4.1.2-beta.19",
|
|
121
|
+
"typescript": "^5.9.3"
|
|
85
122
|
},
|
|
86
123
|
"peerDependencies": {
|
|
87
|
-
"
|
|
88
|
-
"
|
|
124
|
+
"egg": "4.1.2-beta.19",
|
|
125
|
+
"vitest": "^4.0.15"
|
|
89
126
|
},
|
|
90
127
|
"peerDependenciesMeta": {
|
|
91
128
|
"vitest": {
|
|
@@ -97,8 +134,5 @@
|
|
|
97
134
|
},
|
|
98
135
|
"eggPlugin": {
|
|
99
136
|
"name": "egg-mock"
|
|
100
|
-
},
|
|
101
|
-
"scripts": {
|
|
102
|
-
"typecheck": "tsgo --noEmit"
|
|
103
137
|
}
|
|
104
|
-
}
|
|
138
|
+
}
|