forked from bbyars/mountebank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.29 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
{
"name": "mountebank",
"preferGlobal": true,
"version": "1.5.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 Ramdem <cramsden@hmc.edu>",
"Avalon McRae",
"Burkhard Reffeling",
"Shubheksha Jalan",
"Tim Brown <Tpbrown@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": {
"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.7.1",
"ejs": "~2.3.1",
"errorhandler": "^1.0.0",
"express": "~4.13.3",
"json-stable-stringify": "~1.0.0",
"mailparser": "~0.5.2",
"q": "~1.4.1",
"simplesmtp": "~0.3.16",
"soap": "^0.11.0",
"winston": "~2.1.0",
"xml2js": "^0.4.4",
"xmldom": "^0.1.19",
"xpath": "0.0.9"
},
"devDependencies": {
"coveralls": "~2.11.1",
"fs-extra": "~0.26.0",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-csslint": "~0.5.0",
"grunt-eslint": "^17.3.1",
"grunt-jsdoc": "^1.0.0",
"grunt-mocha-test": "~0.12.1",
"grunt-mountebank": "1.0.3",
"istanbul": "^0.4.0",
"jsdoc": "^3.3.3",
"jsdom": "~7.2.2",
"mocha": "~2.3.1",
"rimraf": "^2.4.3",
"time-grunt": "^1.2.2",
"w3cjs": "~0.3.0"
},
"devDependenciesBasedOnNodeVersion": {
"v0": {
"jsdom": "~3.1.0"
},
"v4": {
"jsdom": "~7.2.2"
},
"v5": {
"jsdom": "~7.2.2"
}
},
"engines": {
"node": ">=0.10"
}
}