forked from bbyars/mountebank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
162 lines (162 loc) · 4.04 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "mountebank",
"version": "2.6.0",
"author": "Brandon Byars <[email protected]>",
"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": "[email protected]"
},
"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",
"postinstall": "cd mbTest && npm install",
"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"
},
"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": {
"cors": "2.8.5",
"csv-parse": "4.16.3",
"ejs": "3.1.6",
"errorhandler": "1.5.1",
"escape-html": "1.0.3",
"express": "4.17.1",
"fs-extra": "10.0.0",
"http-proxy-agent": "4.0.1",
"https-proxy-agent": "5.0.0",
"jsonpath-plus": "6.0.1",
"mailparser": "3.3.1",
"mountebank-formatters": "0.0.2",
"nodemailer": "6.6.3",
"prom-client": "13.2.0",
"proper-lockfile": "4.1.2",
"safe-stable-stringify": "1.1.1",
"smtp-server": "3.9.0",
"winston": "3.3.3",
"xmldom": "0.6.0",
"xpath": "0.0.32",
"yargs": "17.1.1"
},
"devDependencies": {
"coveralls": "3.1.1",
"eslint": "7.32.0",
"eslint-plugin-node": "11.1.0",
"firebase-tools": "9.18.0",
"jsdoc": "3.6.7",
"jsdom": "17.0.0",
"license-checker": "25.0.1",
"mocha": "9.1.1",
"mocha-multi-reporters": "1.5.1",
"nc": "1.0.3",
"nyc": "^15.1.0",
"snyk": "1.705.0",
"w3cjs": "0.4.0"
},
"engines": {
"node": ">=12"
},
"snyk": true,
"contributors": [
"Jason Reid",
"James Thomas",
"Nikos Baxevanis",
"Andrew Dean",
"Cannon Biggs",
"Robert Zakrzewski",
"Alex Nishikawa",
"Scott Robinson",
"Paul Phillips",
"Manoj",
"Andrew Hadley",
"Carson Ramsdem",
"Avalon McRae",
"Burkhard Reffeling",
"Shubheksha Jalan",
"Tim Brown",
"Matthew Herman",
"Jonathan Wilson",
"Ryan Boucher",
"Nathan Jenan",
"Tomas Bezdek",
"Vince Maiuri",
"Andrew",
"Nikolaus Piccolotto",
"Stephen Tkac",
"Gabriel Kohen",
"Kevin Pouget",
"Agnibrata Nayak",
"Nassim Kirouane",
"Jamie Geddes",
"Louis Celier",
"Simon Roberts",
"Amy Martin",
"Ruud Kamphuis",
"Karl Brown",
"Sahejpreet Singh",
"Mario Lamontagne",
"Diogo Moura",
"Prasanna Venkatesan",
"Sean Hussey",
"Ed Thome",
"Franz Wong",
"Mario Giampietri",
"leogtzr",
"Simon Brunning",
"Mark Fulton",
"Colin Schoen",
"Connor Worley",
"Authapon Kongkaew",
"Colin Newell",
"Scott Bloch-Wehba-Seaward",
"Santiago Vasquez",
"Pavel Yaschenko",
"O",
"Jean Paul Curinaupa Taype",
"Joey Guerra",
"Dheeraj Bhaskar",
"James Raspass",
"George Tseres",
"Mijail Rondon",
"Ansel Rosenberg",
"Robert Cooper",
"cbrz"
]
}