forked from Kong/insomnia-mockbin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.78 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
{
"version": "1.4.0",
"name": "mockbin",
"description": "Mock, Test & Track HTTP calls",
"author": "Ahmad Nassri <[email protected]> (https://www.mashape.com/)",
"homepage": "https://mockbin.org/",
"license": "MIT",
"main": "./src/index.js",
"bin": "./bin/mockbin",
"keywords": [
"api",
"bin",
"har",
"http",
"json",
"mock",
"mocking",
"test",
"testing"
],
"engines": {
"node": ">=0.10"
},
"files": [
"bin",
"docs",
"src",
"Procfile",
"app.js",
"server.js"
],
"repository": {
"type": "git",
"url": "https://github.com/Mashape/mockbin"
},
"bugs": {
"url": "https://github.com/Mashape/mockbin/issues"
},
"config": {
"port": 8080,
"redis": "redis://127.0.0.1:6379",
"quiet": false
},
"scripts": {
"test": "standard && mocha --recursive --reporter spec",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- --fgrep 'Request Validation' --invert",
"codeclimate": "codeclimate < coverage/lcov.info"
},
"devDependencies": {
"codeclimate-test-reporter": "0.0.4",
"istanbul": "^0.3.13",
"mocha": "^2.2.1",
"should": "^5.2.0",
"standard": "^3.3.0",
"unirest": "^0.4.0"
},
"dependencies": {
"change-case": "^2.3.0",
"commander": "^2.7.1",
"compression": "^1.4.3",
"cookie-parser": "^1.3.4",
"debug": "^2.1.3",
"dicer": "^0.2.4",
"dotenv": "^1.0.0",
"express": "^4.12.3",
"har-validator": "^1.5.1",
"jade": "^1.9.2",
"marked": "^0.3.3",
"media-typer": "^0.3.0",
"method-override": "^2.3.2",
"moment": "^2.9.0",
"morgan": "^1.5.2",
"node-uuid": "^1.4.3",
"qs": "^2.4.1",
"redis": "^0.12.1",
"require-directory": "^2.1.0",
"xmlbuilder": "^2.6.2",
"yamljs": "^0.2.1"
}
}