forked from smollweide/node-mock-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.03 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
74
75
76
77
78
{
"name": "node-mock-server",
"version": "0.23.5",
"description": "File based Node REST API mock server",
"email": "simon.mollweide@web.de",
"author": "Simon Mollweide <simon.mollweide@web.de>",
"url": "https://github.com/smollweide/node-mock-server",
"repository": {
"type": "github",
"url": "https://github.com/smollweide/node-mock-server"
},
"bugs": {
"url": "https://github.com/smollweide/node-mock-server/issues"
},
"scripts": {
"start": "nodemon demo/index.js",
"test": "mocha --exit test/tests.js",
"test:watch": "mocha --colors test/tests.js",
"posttest": "npm run lint",
"lint": "npm run lint:js",
"lint:js": "node_modules/.bin/eslint ."
},
"main": "mock-server.js",
"keywords": [
"node",
"node.js",
"npm",
"mock",
"rest",
"REST",
"rest API",
"REST API",
"api",
"API",
"json",
"DTO",
"Datatransferobject",
"Swagger",
"documentation",
"REST API documentation",
"cli"
],
"engines": {
"node": ">=6"
},
"preferGlobal": false,
"private": false,
"license": "MIT",
"dependencies": {
"body-parser": "1.18.3",
"chip": "0.0.5",
"cookie-parser": "1.4.3",
"deasync": "0.1.13",
"ejs": "2.6.1",
"es6-promise-polyfill": "1.2.0",
"express": "4.16.3",
"extend": "3.0.2",
"faker": "4.1.0",
"inflect": "0.4.0",
"inquirer": "5.2.0",
"make-dir": "1.3.0",
"mime-types": "2.1.20",
"minimatch": "3.0.4",
"opener": "1.5.1",
"p-series": "1.1.0",
"react-dev-utils": "5.0.2",
"request": "2.88.0",
"yamljs": "0.3.0"
},
"devDependencies": {
"@namics/eslint-config": "6.0.1",
"ajv": "6.5.4",
"babel-eslint": "10.0.1",
"eslint": "5.6.1",
"eslint-plugin-import": "2.14.0",
"mocha": "5.2.0"
}
}