forked from bbyars/mountebank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 2.96 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
{
"name": "mountebank",
"preferGlobal": true,
"version": "1.11.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>"
],
"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.1",
"csv-parse": "^1.2.0",
"ejs": "~2.5.1",
"errorhandler": "^1.0.0",
"express": "~4.15.0",
"http-proxy-agent": "^1.0.0",
"https-proxy-agent": "1.0.0",
"json-stable-stringify": "~1.0.0",
"jsonpath-plus": "^0.16.0",
"mailparser": "~0.6.1",
"q": "~1.5.0",
"simplesmtp": "~0.3.16",
"winston": "~2.3.0",
"xmldom": "^0.1.19",
"xpath": "0.0.24",
"yargs": "7.1.0"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.4.1",
"coveralls": "~2.13.0",
"firebase-tools": "^3.9.0",
"fs-extra": "~3.0.0",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-csslint": "~2.0.0",
"grunt-css": "^0.5.4",
"grunt-eslint": "^19.0.0",
"grunt-jsdoc": "^2.1.0",
"grunt-mocha-test": "~0.13.2",
"grunt-mountebank": "1.0.5",
"istanbul": "^0.4.0",
"jsdoc": "^3.3.3",
"jsdom": "~9.12.0",
"mocha": "~3.3.0",
"rimraf": "^2.4.3",
"shonkwrap": "^1.3.0",
"time-grunt": "^1.2.2",
"w3cjs": "~0.3.0"
},
"greenkeeper": {
"ignore": [
"mailparser"
]
},
"engines": {
"node": ">=4.0"
}
}