forked from ExpediaGroup/catalyst-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.24 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
{
"name": "@vrbo/catalyst-server",
"description": "Configuration and composition management for Hapi.js applications.",
"version": "5.6.0",
"keywords": [
"hapi.js",
"catalyst",
"catalyst-server",
"node.js",
"configuration",
"management",
"homeaway",
"vrbo",
"expedia",
"expediagroup"
],
"license": "Apache-2.0",
"author": {
"name": "Expedia Group",
"email": "[email protected]"
},
"contributors": [
"tlivings",
"tuckbick",
"mcjfunk",
"holmok",
"skphi13",
"joonastanner"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/expediagroup/catalyst-server"
},
"bugs": {
"url": "https://github.com/expediagroup/catalyst-server/issues"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "echo 'noop'",
"commit": "cz",
"test": "standard --env mocha './lib/**/*.js' './tests/**/*.js' && npm run nyc",
"test:fix": "standard --fix --env mocha './lib/**/*.js' './tests/**/*.js' && npm run nyc",
"mocha": "mocha 'tests/**/*.js'",
"nyc": "nyc --reporter=text --reporter=text-summary --reporter=html --report-dir=docs/reports/coverage npm run mocha",
"postnyc": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard": {
"env": [
"mocha"
]
},
"dependencies": {
"@hapi/crumb": "^8.0.0 || ^9.0.0",
"@hapi/hoek": "^9.0.4 || ^10.0.0 || ^11.0.1",
"@vrbo/steerage": "^12.1.3",
"hapi-pino": "^7.2.0 || ^8.0.0 || ^12.0.0",
"joi": "^17.2.0",
"pino-pretty": "^10.0.0",
"shortstop-handlers": "^1.0.1"
},
"devDependencies": {
"@hapi/hapi": "^20.2.1",
"@hapi/inert": "^7.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"sinon": "^15.0.0",
"standard": "^17.0.0"
},
"peerDependencies": {
"@hapi/hapi": "^20.2.1"
}
}