-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
73 lines (73 loc) · 1.44 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
{
"name": "interfake",
"preferGlobal": true,
"version": "1.20.0",
"author": "Daniel Hough <[email protected]>",
"description": "A simple way to create dummy APIs",
"contributors": [
{
"name": "Daniel Hough",
"email": "[email protected]",
"url": "https://danhough.com"
},
{
"name": "rajit",
"url": "https://github.com/rajit"
},
{
"name": "bruce-one",
"url": "https://github.com/bruce-one"
},
{
"name": "roychoo",
"url": "https://github.com/roychoo"
}
],
"scripts": {
"test": "mocha tests/*.test.js --reporter spec"
},
"files": [
"example-apis",
"index.js",
"lib"
],
"keywords": [
"cli",
"http",
"server",
"mocking",
"mocks",
"testing",
"api",
"rest"
],
"repository": {
"type": "git",
"url": "[email protected]:basicallydan/interfake.git"
},
"dependencies": {
"body-parser": "^1.6.7",
"commander": "2.3.0",
"connect-json": "0.0.0",
"core-util-is": "^1.0.1",
"deepmerge": "^4.0.0",
"express": "^4.16.4",
"lodash": "^4.17.15",
"merge": "^1.2.1",
"serve-static": "^1.13.2",
"watchr": "^2.4.13"
},
"license": "MIT",
"engines": {
"node": ">=4"
},
"main": "./lib/server.js",
"bin": "./index.js",
"devDependencies": {
"api-easy": "^0.4.0",
"connect": "^3.6.6",
"mocha": "^5.2.0",
"q": "~1.0.1",
"request": "^2.88.0"
}
}