-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 856 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 856 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
30
31
32
{
"name": "mock-utils",
"version": "0.0.16",
"description": "mock utils, convenient config",
"main": "index.js",
"scripts": {
"start": "node index.js --mock ./mock --useDirPrefix --port 8300",
"build": "cp index.js ./dist/index.js & cp utils.js ./dist/utils.js & cp package.json ./dist/package.json & cp README.MD ./dist/README.MD",
"pub": "npm run build && cd ./dist && npm publish"
},
"bin": {
"mock-server": "index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heriky/mock-utils.git"
},
"keywords": [
"mock",
"utils"
],
"author": "kang.han",
"license": "ISC",
"bugs": {
"url": "https://github.com/heriky/mock-utils/issues"
},
"homepage": "https://github.com/heriky/mock-utils#readme",
"dependencies": {
"express": "^4.17.1",
"yargs": "^15.1.0"
}
}