-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 1.47 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
{
"name": "gulp-json-srv",
"version": "1.2.0",
"description": "Wrapper for json-server for easy launching with Gulp",
"license": "MIT",
"repository": "https://github.com/GrafGenerator/gulp-json-server.git",
"author": {
"name": "Nikita Ivanov",
"email": "[email protected]"
},
"contributors": [
"Raul Dinegri <[email protected]>",
"borowskt <[email protected]>",
"mijamo <[email protected]>",
"Nathan Mauro <[email protected]>",
"Nicolas Husson <[email protected]>"
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"jshint": "gulp jshint",
"test": "./node_modules/.bin/mocha --compilers js:babel-core/register test/*Spec.js"
},
"files": [
"index.js",
"merger.js",
"test"
],
"keywords": [
"gulpplugin",
"json-server",
"json",
"fake",
"prototyping",
"test",
"testing",
"mock",
"mocking",
"REST",
"API",
"server"
],
"dependencies": {
"body-parser": "^1.15.2",
"chalk": "^2.3.0",
"fs": "0.0.2",
"json-server": "^0.12.1",
"lodash": "^4.15.0",
"loglevel": "^1.4.1",
"plugin-error": "^1.0.0",
"server-destroy": "^1.0.1",
"through2": "^2.0.1"
},
"devDependencies": {
"babel-core": "^6.25.0",
"gulp": "^3.9.0",
"gulp-jshint": "^2.1.0",
"gulp-mocha": "^5.0.0",
"jshint": "^2.9.5",
"jshint-stylish": "^2.0.1",
"mocha": "^5.0.0",
"supertest": "^3.0.0"
}
}