-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
44 lines (44 loc) · 1.01 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
{
"name": "gulp-stubby-server",
"version": "0.4.0",
"description": "A Gulp plugin for setting up a Stubby mock server based on YAML/JSON/JS configuration files",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/felixzapata/gulp-stubby-server"
},
"keywords": [
"gulpplugin",
"stubby",
"mock",
"server",
"stubs",
"task"
],
"author": {
"name": "Felix Zapata",
"email": "[email protected]",
"url": "https://github.com/felixzapata"
},
"scripts": {
"test": "gulp nodeunit"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/felixzapata/gulp-stubby-server/issues"
},
"homepage": "https://github.com/felixzapata/gulp-stubby-server",
"devDependencies": {
"gulp-jshint": "^2.1.0",
"gulp-nodeunit": "0.0.5",
"supertest": "~6.3.3"
},
"dependencies": {
"glob-all": "^3.0.3",
"gulp": "^4.0.2",
"gulp-util": "^3.0.6",
"js-yaml": "^3.13.1",
"lodash": "^4.17.13",
"stubby": "^5.1.0"
}
}