forked from bbyars/mountebank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.56 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
{
"name": "mountebank",
"preferGlobal": true,
"version": "1.6.0",
"author": "Brandon Byars <[email protected]>",
"contributors": [
"Jason Reid <[email protected]>",
"James Thomas",
"Nikos Baxevanis",
"Andrew Dean",
"Cannon Biggs",
"Robert Zakrzewski",
"Alex Nishikawa",
"Scott Robinson <[email protected]>",
"Paul Phillips <[email protected]>",
"Manoj <[email protected]>",
"Andrew Hadley <[email protected]>",
"Carson Ramsdem <[email protected]>",
"Avalon McRae",
"Burkhard Reffeling",
"Shubheksha Jalan",
"Tim Brown <[email protected]>",
"Matthew Herman <[email protected]>",
"Jonathan Wilson <[email protected]>",
"Ryan Boucher <[email protected]>",
"Nathan Jenan <[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": {
"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.4.1",
"errorhandler": "^1.0.0",
"express": "~4.13.3",
"json-stable-stringify": "~1.0.0",
"jsonpath-plus": "^0.15.0",
"mailparser": "~0.5.2",
"q": "~1.4.1",
"simplesmtp": "~0.3.16",
"soap": "^0.13.0",
"winston": "~2.2.0",
"xml2js": "^0.4.4",
"xmldom": "^0.1.19",
"xpath": "0.0.23",
"yargs": "^4.4.0"
},
"devDependencies": {
"coveralls": "~2.11.1",
"fs-extra": "~0.27.0",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-csslint": "~1.0.0",
"grunt-css": "^0.5.4",
"grunt-eslint": "^18.0.0",
"grunt-jsdoc": "^1.0.0",
"grunt-mocha-test": "~0.12.1",
"grunt-mountebank": "1.0.5",
"istanbul": "^0.4.0",
"jsdoc": "^3.3.3",
"jsdom": "~8.4.0",
"mocha": "~2.4.5",
"rimraf": "^2.4.3",
"time-grunt": "^1.2.2",
"w3cjs": "~0.3.0"
},
"devDependenciesBasedOnNodeVersion": {
"v0": {
"jsdom": "~3.1.0"
},
"v4": {
"jsdom": "~8.4.0"
},
"v5": {
"jsdom": "~8.4.0"
}
},
"engines": {
"node": ">=0.10"
}
}