forked from therebelbeta/json-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.63 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
{
"name": "json-mock",
"version": "0.1.0",
"description": "Mock a REST API using just JSON. An advanced fork of typicode/json-server",
"main": "./src/index.js",
"bin": "./bin/index.js",
"directories": {
"test": "test"
},
"dependencies": {
"body-parser": "^1.8.1",
"chalk": "^0.4.0",
"cors": "^2.3.0",
"errorhandler": "^1.2.0",
"express": "^4.9.5",
"got": "^1.2.2",
"lowdb": "^0.7.1",
"method-override": "^2.1.2",
"morgan": "^1.3.1",
"node-uuid": "^1.4.2",
"underscore": "^1.5.2",
"underscore-db": "^0.8.0",
"underscore.inflections": "~0.2.1",
"update-notifier": "^0.2.2",
"yargs": "^1.3.1",
"express-http-proxy":"^0.6.0"
},
"devDependencies": {
"husky": "^0.6.1",
"istanbul": "^0.3.14",
"mocha": "^2.2.4",
"supertest": "~0.8.1"
},
"scripts": {
"test": "./node_modules/istanbul/lib/cli.js cover _mocha --",
"start": "node server.js",
"prepush": "npm t"
},
"repository": {
"type": "git",
"url": "git://github.com/therebelrobot/json-mock.git"
},
"keywords": [
"JSON",
"advanced",
"expanded",
"nested",
"server",
"fake",
"REST",
"API",
"prototyping",
"mock",
"mocking",
"test",
"testing",
"rest",
"data",
"dummy",
"sandbox"
],
"author": "Trent Oswald (@therebelrobot) <trentoswald@therebelrobot.com>",
"contributors":[
"Typicode <typicode@gmail.com> (original typicode/json-server fork)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/therebelrobot/json-mock/issues"
},
"homepage": "https://github.com/therebelrobot/json-mock"
}