forked from bbyars/mountebank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.8 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
{
"name": "mountebank",
"version": "2.9.1",
"author": "Brandon Byars <brandon.byars@gmail.com>",
"description": "Over the wire test doubles",
"homepage": "http://www.mbtest.org",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bbyars/mountebank.git"
},
"bugs": {
"url": "https://github.com/bbyars/mountebank/issues",
"email": "brandon.byars@gmail.com"
},
"bin": {
"mb": "./bin/mb"
},
"main": "./src/mountebank.js",
"scripts": {
"jsdoc": "jsdoc src/**/*.js --destination docs --configure .jsdoc --pedantic --readme CONTRIBUTING.md --package package.json",
"lint": "eslint src/ tasks/ test/ mbTest/ bin/mb && node tasks/lints/licenseCheck.js && node tasks/lints/deadCheck.js && node tasks/lints/objectCheck.js",
"test:api": "node tasks/mbtest.js api",
"test:cli": "cd mbTest && npm run cli",
"test:unit": "mocha --forbid-only --forbid-pending --reporter mocha-multi-reporters --reporter-options configFile=test/config.json 'test/**/*.js'",
"test:cover": "nyc --reporter=lcov --reporter=text --include='src/**' --exclude='src/public/**' npm run test:unit",
"test:js": "cd mbTest && npm run js",
"test:perf": "cd mbTest && npm run perf",
"test:web": "node tasks/mbtest.js web",
"test": "npm run lint && npm run test:cover && npm run test:api && npm run test:cli && npm run test:js",
"airplane": "MB_AIRPLANE_MODE=true npm test"
},
"files": [
"bin",
"src",
"package.json",
"package-lock.json",
"README.md",
"LICENSE",
"releases.json"
],
"keywords": [
"test",
"stub",
"mock",
"double",
"smtp",
"email",
"http",
"https",
"tcp",
"net",
"service virtualization"
],
"dependencies": {
"@xmldom/xmldom": "0.8.10",
"cors": "2.8.5",
"csv-parse": "5.5.3",
"ejs": "3.1.9",
"errorhandler": "1.5.1",
"escape-html": "1.0.3",
"express": "4.18.2",
"fs-extra": "11.2.0",
"http-proxy-agent": "7.0.0",
"https-proxy-agent": "7.0.2",
"jsonpath-plus": "8.0.0",
"mailparser": "3.6.7",
"mountebank-formatters": "0.0.2",
"nodemailer": "6.9.9",
"prom-client": "15.1.0",
"proper-lockfile": "4.1.2",
"safe-regex": "^2.1.1",
"safe-stable-stringify": "2.4.3",
"smtp-server": "3.13.2",
"winston": "3.11.0",
"xpath": "0.0.34",
"yargs": "17.7.2"
},
"devDependencies": {
"coveralls": "3.1.1",
"eslint": "8.56.0",
"eslint-plugin-node": "11.1.0",
"firebase-tools": "13.1.0",
"jsdoc": "4.0.2",
"jsdom": "24.0.0",
"license-checker": "25.0.1",
"mbTest": "file:./mbTest",
"mocha": "10.2.0",
"mocha-multi-reporters": "1.5.1",
"nc": "^0.0.0",
"nyc": "^15.1.0",
"snyk": "1.1276.0",
"w3cjs": "^0.1.21"
},
"engines": {
"node": ">=18"
},
"snyk": true
}