-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.96 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
{
"name": "gulp-mocker",
"version": "1.0.1",
"description": "Gulp Mocker. A mock server can be used with gulp, or run it in command line, or run it programmatically, and more.",
"main": "src/index.js",
"scripts": {
"dev": "run.js",
"test": "mocha ./test/**/*.spec.js",
"test-coverage": "nyc --reporter=html --reporter=text npm run test",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "eslint src/**/*.js bin/**/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/lsycxyj/gulp-mocker.git"
},
"bin": {
"gulp-mocker": "./bin/index.js"
},
"keywords": [
"gulp",
"mock",
"server",
"mock-server",
"mocking"
],
"author": "Light Leung <[email protected]>",
"license": "LGPLv3",
"homepage": "https://github.com/lsycxyj/gulp-mocker",
"dependencies": {
"chalk": "^2.3.2",
"commander": "^2.15.1",
"decache": "^4.4.0",
"fancy-log": "^1.3.2",
"glob": "^7.1.2",
"http-proxy-middleware": "^0.18.0",
"hyperquest": "^2.1.3",
"is-buffer": "^2.0.2",
"is-stream": "^1.1.0",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-busboy": "^1.1.1",
"koa-connect": "^2.0.1",
"koa-router": "^7.4.0",
"lodash": "^4.17.5",
"mime": "^2.3.1",
"mockjs": "^1.0.1-beta3",
"optimist": "^0.6.1",
"path-to-regexp": "^2.2.0",
"request": "^2.85.0",
"stream": "^0.0.2",
"through2": "^2.0.3"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-spies": "^1.0.0",
"coveralls": "^3.0.1",
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"eslint-config-nodejs": "^2.0.0",
"eslint-plugin-import": "^2.11.0",
"event-stream": "^3.3.4",
"gulp": "^3.9.1",
"gulp-zip": "^4.1.0",
"image-size": "^0.7.2",
"memory-fs": "^0.4.1",
"mocha": "^5.1.1",
"nyc": "^11.7.1",
"supertest": "^3.0.0",
"vinyl": "^2.1.0"
}
}