-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
80 lines (80 loc) · 1.92 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
79
80
{
"name": "robe-json-server",
"version": "0.8.19",
"description": "Serves JSON files through REST routes.",
"main": "./src/server/index.js",
"bin": "./bin/index.js",
"directories": {
"test": "test"
},
"dependencies": {
"body-parser": "^1.15.2",
"chalk": "^1.1.3",
"chokidar": "^1.6.0",
"compression": "^1.6.0",
"connect-pause": "^0.1.0",
"cors": "^2.3.0",
"errorhandler": "^1.2.0",
"express": "^4.9.5",
"lodash": "^4.11.2",
"lowdb": "^0.13.1",
"method-override": "^2.1.2",
"morgan": "^1.3.1",
"object-assign": "^4.0.1",
"pluralize": "^3.0.0",
"request": "^2.72.0",
"server-destroy": "^1.0.1",
"underscore-db": "^0.10.0",
"update-notifier": "^1.0.2",
"uuid": "^3.0.0",
"yargs": "^4.2.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"cross-env": "^1.0.8",
"husky": "^0.11.4",
"mkdirp": "^0.5.1",
"mocha": "^2.2.4",
"os-tmpdir": "^1.0.1",
"rimraf": "^2.5.2",
"server-ready": "^0.2.0",
"standard": "^7.1.2",
"supertest": "^1.2.0",
"temp-write": "^2.1.0"
},
"scripts": {
"test": "npm run test:cli && npm run test:server && standard",
"test:cli": "cross-env NODE_ENV=test mocha -R spec test/cli/*.js",
"test:server": "cross-env NODE_ENV=test mocha -R spec test/server/*.js",
"start": "node bin",
"prepush": "npm t",
"build": "babel src -d lib"
},
"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 <typicode@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/typicode/json-server/issues"
},
"homepage": "https://github.com/typicode/json-server"
}