forked from typicode/json-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.67 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
{
"name": "json-server",
"version": "0.8.14",
"description": "Serves JSON files through REST routes.",
"main": "./src/server/index.js",
"bin": "./bin/index.js",
"directories": {
"test": "test"
},
"dependencies": {
"body-parser": "^1.8.1",
"chalk": "^0.4.0",
"compression": "^1.6.0",
"connect-pause": "^0.1.0",
"cors": "^2.3.0",
"errorhandler": "^1.2.0",
"express": "^4.9.5",
"got": "^3.3.0",
"lodash": "^4.11.2",
"lowdb": "^0.13.0-beta.2",
"method-override": "^2.1.2",
"morgan": "^1.3.1",
"node-uuid": "^1.4.2",
"object-assign": "^4.0.1",
"pluralize": "^1.1.2",
"server-destroy": "^1.0.1",
"underscore-db": "^0.10.0",
"update-notifier": "^0.5.0",
"yargs": "^4.2.0"
},
"devDependencies": {
"husky": "^0.11.4",
"mocha": "^2.2.4",
"rimraf": "^2.4.1",
"server-ready": "^0.2.0",
"standard": "^3.8.0",
"supertest": "~0.8.1"
},
"scripts": {
"test": "npm run test:cli && npm run test:server && standard",
"test:cli": "NODE_ENV=test mocha -R spec test/cli/*.js",
"test:server": "NODE_ENV=test mocha -R spec test/server/*.js",
"start": "node bin",
"prepush": "npm t"
},
"repository": {
"type": "git",
"url": "git://github.com/typicode/json-server.git"
},
"keywords": [
"JSON",
"server",
"fake",
"REST",
"API",
"prototyping",
"mock",
"mocking",
"test",
"testing",
"rest",
"data",
"dummy",
"sandbox"
],
"author": "Typicode <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/typicode/json-server/issues"
},
"homepage": "https://github.com/typicode/json-server"
}