forked from Kong/insomnia-mockbin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
112 lines (112 loc) · 2.59 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"version": "1.6.2",
"name": "mockbin",
"description": "Test, mock, and track HTTP requests & responses between libraries, sockets and APIs",
"author": "Kong (https://www.konghq.com/)",
"homepage": "https://mockbin.org/",
"repository": {
"type": "git",
"url": "git+https://github.com/Kong/mockbin.git"
},
"license": "MIT",
"main": "lib/index",
"bin": "bin/mockbin",
"keywords": [
"api",
"bin",
"har",
"http",
"json",
"mock",
"mocking",
"test",
"testing"
],
"engines": {
"node": ">=0.10"
},
"files": [
"bin",
"docs",
"src",
"lib",
"Procfile",
"server.js"
],
"bugs": {
"url": "https://github.com/Kong/mockbin/issues"
},
"config": {
"port": 8080,
"quiet": false,
"redis": "//redis:6379",
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"watch": {
"start": {
"patterns": [
"src",
"test",
"lib",
"."
],
"extensions": "js,jsx,pug,md",
"ignore": "src/vendor/external.min.js",
"quiet": true,
"legacyWatch": true,
"delay": 2500,
"runOnChangeOnly": false
}
},
"scripts": {
"start": "node --trace-deprecation bin/mockbin",
"dev": "node server.js",
"test": "mocha --recursive",
"pretest": "standard --fix && echint",
"coverage": "istanbul cover --dir coverage _mocha -- --recursive --fgrep 'Request Validation' --invert --reporter dot",
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"watch": "npm-watch"
},
"echint": {
"ignore": [
"CONTRIBUTING.md"
]
},
"devDependencies": {
"codeclimate-test-reporter": "0.5.1",
"cz-conventional-changelog": "^3.1.0",
"echint": "^4.0.2",
"mocha": "^7.1.0",
"semantic-release": "^17.0.4",
"should": "^13.2.3",
"standard": "^14.3.1",
"unirest": "^0.6.0"
},
"dependencies": {
"change-case": "^4.1.1",
"commander": "^4.1.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"debug": "^4.3.4",
"dicer": "^0.3.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"forwarded-http": "^0.3.0",
"har-validator": "^5.1.3",
"jstransformer-marked": "^1.4.0",
"media-typer": "^1.1.0",
"method-override": "^3.0.0",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"nyc": "^15.1.0",
"pug": "^2.0.4",
"redis": "^3.0.2",
"require-directory": "^2.1.1",
"uuid": "^8.3.2",
"xmlbuilder": "^15.0.0",
"yamljs": "^0.3.0"
}
}