-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
74 lines (74 loc) · 2.49 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
70
71
72
73
74
{
"name": "dynamic-mocker",
"version": "1.2.19",
"scripts": {
"dev": "node demo/client_preview/build/dev-server.js",
"build": "node build/webpack.js",
"mock": "node run.js demo/mock_proxy/config.js",
"proxy80": "node ./run.js demo/proxy/config-proxy80.js",
"static": "node ./run.js demo/static_svc/config-static.js",
"preview": "node demo/client_preview/build/build.js",
"test": "jest",
"test-svc": "node -e \"require('./test/svc.js').start()\"",
"generate": "node -e \"require('./').genClient('./demo/mock_proxy/config.js')\"",
"fixlint": "eslint --fix --ext .js src demo build test",
"prepublishOnly": "npm run fixlint && npm test && npm run build"
},
"dependencies": {
"http-proxy": "^1.18.1",
"mime": "^2.5.2",
"glob": "*"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-stage-2": "^7.0.0",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.4.5",
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
"@vue/babel-plugin-transform-vue-jsx": "^1.0.0",
"autoprefixer": "^9.6.0",
"axios": "^0.21.1",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"core-js": "^3.1.4",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "4.0.1",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "4.0.0",
"eslint-plugin-vue": "^5.2.3",
"express": "^4.17.3",
"glob": ">7.0.0",
"jest": "^24.8.0",
"webpack": "^4.35.3",
"webpack-dev-middleware": "^3.7.0",
"webpack-hot-middleware": "^2.25.0"
},
"author": {
"name": "HuangZheng"
},
"description": "A dynamic \"mock + proxy\" server and client mocker",
"email": "[email protected]",
"license": "Mit",
"main": "src/index.js",
"files": [
"src",
"lib",
"ssl",
"run.js"
],
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}