-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.12 KB
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
{
"name": "express-data-server",
"version": "0.9.0",
"description": "基于 express 提供模拟接口数据服务",
"main": "src/index.js",
"scripts": {
"start": "cross-env LOG_ENV=debug nodemon examples/index.js",
"start:fileMap": "cross-env LOG_ENV=debug nodemon examples/index.js -s fileMap",
"start:acStructure": "cross-env LOG_ENV=debug cross-env LOG-LEVEL=debugnodemon examples/index.js -s acStructure",
"lint": "standard -fix src/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/uojo/express-data-server"
},
"keywords": [
"express",
"mock",
"data-server",
"api-mock",
"json-mock"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/uojo/express-data-server/issues"
},
"homepage": "https://github.com/uojo/express-data-server",
"devDependencies": {
"browser-sync": "2.18.13",
"commander": "^2.16.0",
"cross-env": "5.0.5",
"express": "4.15.4",
"node-stack-log": "^0.1.0",
"nodemon": "1.11.0",
"standard": "^11.0.1"
},
"dependencies": {
"body-parser": "1.18.0"
},
"standard": {
"ignore": []
}
}