-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "StaticMockServer",
"version": "0.2.0",
"description": "A Mock Server using JSON as an input. Created with Koa & Koa Router.",
"main": "index.js",
"author": "Jon Romanowski",
"license": "MIT",
"scripts": {
"start": "node index.js",
"mon": "nodemon index.js",
"dev": "node index.js",
"debug": "node --inspect-brk index.js",
"monbug": "nodemon --inspect-brk index.js"
},
"keywords": [
"server",
"mock",
"JSON",
"static",
"REST",
"node",
"API",
"test",
"testing",
"rest",
"data",
"lightweight"
],
"bugs": {
"url": "https://github.com/JonVisc/StaticMockServer/issues"
},
"homepage": "https://github.com/JonVisc/StaticMockServer",
"engines": {
"node": ">=7.6"
},
"dependencies": {
"@koa/cors": "2",
"colors": "^1.1.2",
"koa": "^2.4.1",
"koa-router": "^7.3.0"
},
"devDependencies": {
"nodemon": "^1.18.8"
}
}