-
Notifications
You must be signed in to change notification settings - Fork 213
/
package.json
65 lines (65 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
{
"version": "2.0.3",
"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": ">=22"
},
"files": ["bin", "docs", "src", "lib", "server.js"],
"bugs": {
"url": "https://github.com/Kong/mockbin/issues"
},
"scripts": {
"start": "node server.js",
"dev": "npx nodemon -e pug,js,json server.js",
"test": "mocha --recursive",
"check": "biome check .",
"coverage": "npx nyc --report-dir coverage npm test",
"clean": "git clean -fdX"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"mocha": "^10.2.0",
"should": "^13.2.3"
},
"dependencies": {
"change-case": "^4.1.1",
"compression": "^1.7.4",
"content-type": "^1.0.4",
"cookie-parser": "^1.4.5",
"debug": "^4.3.4",
"@idio/dicer": "1.1.0",
"dotenv": "^16.4.0",
"express": "^4.17.1",
"har-validator": "^5.1.3",
"jstransformer-marked": "^1.4.0",
"method-override": "^3.0.0",
"morgan": "^1.9.1",
"pug": "^3.0.3",
"redis": "^4.6.12",
"require-directory": "^2.1.1",
"uuid": "^8.3.2",
"xmlbuilder": "^15.0.0",
"yamljs": "^0.3.0"
}
}