This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
forked from bbyars/mountebank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
137 lines (137 loc) · 3.62 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
{
"name": "mountebank",
"preferGlobal": true,
"version": "2.0.0",
"author": "Brandon Byars <brandon.byars@gmail.com>",
"contributors": [
"Jason Reid <jason@jasonreid.com>",
"James Thomas",
"Nikos Baxevanis",
"Andrew Dean",
"Cannon Biggs",
"Robert Zakrzewski",
"Alex Nishikawa",
"Scott Robinson <scott@quadhome.com>",
"Paul Phillips <paul.phillips@thoughtworks.com>",
"Manoj <manojlds@gmail.com>",
"Andrew Hadley <andhadley@gmail.com>",
"Carson Ramsdem <cramsden@hmc.edu>",
"Avalon McRae",
"Burkhard Reffeling",
"Shubheksha Jalan",
"Tim Brown <Tpbrown@gmail.com>",
"Matthew Herman <mdewaddict11@gmail.com>",
"Jonathan Wilson <jonathan.wilson@sjrb.ca>",
"Ryan Boucher <ryan.boucher@distributedlife.com>",
"Nathan Jenan <njenan@gmail.com>",
"Tomas Bezdek <tbezdek@gumtree.com>",
"Vince Maiuri <RookY2K@gmail.com>",
"Andrew <sunfreakz@gmail.com>",
"Nikolaus Piccolotto <prayerslayer@gmail.com>",
"Stephen Tkac",
"Gabriel Kohen",
"Kevin Pouget <kpouget@altair.com>",
"Agnibrata Nayak",
"Nassim Kirouane <nassim.kirouane@inovia-team.com>",
"Jamie Geddes <jamie@clumsypenguin.com>",
"Louis Celier <louis.celier@matters.tech>",
"Simon Roberts <simon.roberts2@anz.com>",
"Amy Martin",
"Ruud Kamphuis",
"Karl Brown <kabrown@thoughtworks.com>",
"Sahejpreet Singh",
"Mario Lamontagne",
"Diogo Moura <diogo.moura@just-eat.com>",
"Prasanna Venkatesan <mail.prasanna.v@gmail.com>",
"Sean Hussey <sean@seanhussey.com>",
"Ed Thome <ethome@thoughtworks.com>",
"Franz Wong <franzwong@gmail.com>",
"Mario Giampietri <mario.giampietri@gmail.com>",
"leogtzr <leogutierrezramirez@gmail.com>",
"Simon Brunning <simon@brunningonline.net>",
"Mark Fulton <mfulton26@gmail.com>",
"Colin Schoen <schoen@yelp.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": {
"start": "bin/mb",
"restart": "bin/mb restart",
"stop": "bin/mb stop"
},
"keywords": [
"test",
"stub",
"mock",
"double",
"smtp",
"email",
"http",
"https",
"tcp",
"net",
"service virtualization"
],
"dependencies": {
"cors": "~2.8.4",
"csv-parse": "3.0.0",
"ejs": "^2.6.1",
"errorhandler": "1.5.0",
"escape-html": "^1.0.3",
"express": "^4.16.3",
"http-proxy-agent": "^2.1.0",
"https-proxy-agent": "^2.2.1",
"json-stable-stringify": "1.0.1",
"jsonpath-plus": "^0.16.0",
"mailparser2": "^1.0.0",
"nodemailer": "^4.6.7",
"q": "1.5.1",
"query-string": "6.2.0",
"smtp-server": "^3.4.6",
"winston": "3.0.1",
"xmldom": "0.1.27",
"xpath": "0.0.27",
"yargs": "12.0.1"
},
"devDependencies": {
"firebase-tools": "^4.0.0",
"fs-extra": "7.0.0",
"grunt": "^1.0.3",
"grunt-cli": "^1.2.0",
"grunt-contrib-csslint": "~2.0.0",
"grunt-css": "^0.5.4",
"grunt-eslint": "^21.0.0",
"grunt-jsdoc": "^2.2.1",
"grunt-mocha-test": "~0.13.3",
"grunt-mountebank": "1.0.7",
"istanbul": "0.4.5",
"jsdoc": "^3.5.5",
"jsdom": "~12.1.0",
"mocha": "5.2.0",
"nc": "^1.0.2",
"rimraf": "^2.6.2",
"time-grunt": "1.4.0",
"w3cjs": "~0.4.0"
},
"engines": {
"node": ">=6"
},
"greenkeeper": {
"ignore": [
"q"
]
}
}