-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.25 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
{
"name": "cf-mock-server",
"version": "1.0.20",
"description": "A flexible and fast mock server",
"main": "index.js",
"scripts": {
"test": "nyc mocha test/index.js --exit",
"ui": "cd ui && npm run dev",
"coverage": "nyc report --reporter=html mocha test/index.js --exit",
"cov": "yarn run coverage && node scripts/coverage"
},
"author": "xiao555 <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/xiao555/mock-server.git"
},
"bin": {
"mock": "./bin/mock",
"_mock": "./bin/_mock"
},
"engines": {
"node": ">= 7.10.1"
},
"license": "MIT",
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.12.2",
"crlf-normalize": "^1.0.1",
"debug": "^3.1.0",
"express": "^4.16.3",
"glob": "^7.1.2",
"node-watch": "^0.5.8"
},
"devDependencies": {
"koa": "^2.4.1",
"@koa/cors": "^2.2.2",
"mocha": "^5.0.5",
"nyc": "^13.0.1",
"opn": "^5.4.0",
"should": "^13.2.1",
"supertest": "^3.3.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
}
}