forked from ExpediaGroup/service-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.52 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
{
"name": "@vrbo/service-client",
"description": "A general purpose http client built with extensibility in mind. It also features lifecycle hooks, dynamic hostname resolution, and circuit breaking.",
"version": "5.0.2",
"keywords": [
"http",
"client",
"service",
"circuit",
"breaking",
"hooks",
"node",
"utility",
"fetch",
"request",
"wreck",
"get",
"post",
"vrbo",
"homeaway",
"expedia",
"expediagroup"
],
"license": "Apache-2.0",
"author": {
"name": "Expedia Group",
"email": "[email protected]"
},
"contributors": [
"tlivingston",
"tuckbick",
"mcjfunk",
"holmok",
"skphi13"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ExpediaGroup/service-client.git"
},
"bugs": {
"url": "https://github.com/ExpediaGroup/service-client/issues"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "echo 'noop'",
"commit": "cz",
"test": "npm run eslint && npm run nyc",
"eslint": "eslint lib test",
"mocha": "mocha test/unit/*.js test/unit/**/*.js",
"debug": "node --nolazy --inspect-brk=9229 examples/simple/index.js",
"nyc": "nyc --reporter=text --reporter=text-summary --reporter=lcov --report-dir=docs/reports/coverage npm run mocha",
"postnyc": "nyc check-coverage --statements 100 --branches 97 --functions 100 --lines 100"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@hapi/hoek": "^9.0.4 || ^10.0.0 || ^11.0.1",
"@hapi/wreck": "^18.0.1",
"@paralleldrive/cuid2": "^2.2.0",
"circuit-state": "^1.0.0",
"debug": "^4.0.0",
"individual": "^3.0.0",
"joi": "^17.7.0"
},
"devDependencies": {
"@hapi/good": "^9.0.0",
"@hapi/good-console": "^9.0.0",
"@hapi/hapi": "^20.2.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"autocannon": "^7.0.0",
"chai": "^4.1.2",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.44.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"nock": "^13.3.0",
"nyc": "^15.0.0",
"proxyquire": "^2.1.0",
"semantic-release": "^19.0.5",
"sinon": "^15.0.2"
}
}