-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.09 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
{
"name": "vhttp",
"version": "0.17.0",
"description": "Promise based Node.js HTTP/HTTPS client with optional virtualization.",
"main": "index.js",
"scripts": {
"test": "istanbul test _mocha",
"tdd": "mocha -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nordstrom/vhttp.git"
},
"files": [
"index.js",
"LICENSE",
"README.md"
],
"keywords": [
"http",
"https",
"request",
"request-promise",
"virtual",
"virtualize",
"mock",
"mocks",
"stub",
"stubs"
],
"author": "Andy Day (andyday)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Nordstrom/vhttp/issues"
},
"homepage": "https://github.com/Nordstrom/vhttp#readme",
"devDependencies": {
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"nock": "^8.0.0",
"rollup": "^0.34.1",
"should": "^9.0.2"
},
"dependencies": {
"bluebird": "^3.4.1",
"glob": "^7.0.5",
"lodash": "^4.13.1",
"request-promise": "^3.0.0",
"smart-eql": "^0.2.0",
"substituter": "^1.2.1",
"xml2js": "^0.4.17"
}
}