-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 719 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 719 Bytes
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
{
"name": "mock-webpack-plugin",
"version": "3.0.0",
"description": "mock server plugin for webpack",
"main": "dist/index.js",
"author": "Marx",
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"mockjs": "^1.1.0"
},
"repository": "https://github.com/MarxJiao/mock-webpack-plugin.git",
"scripts": {
"build": "babel src --out-dir dist",
"dev": "babel src --watch --out-dir dist",
"test": "jest --detectOpenHandles --forceExit"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"axios": "^0.21.1",
"jest": "^25.3.0",
"webpack": "^4.42.1"
},
"jest": {
"testEnvironment": "node"
}
}