forked from ExpediaGroup/catalyst-render
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.88 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
{
"name": "@vrbo/catalyst-render",
"version": "4.3.1",
"description": "A Hapi.js plugin to aid in server-side rendering using Handlebars and React.",
"main": "lib/index.js",
"author": {
"name": "Expedia Group",
"email": "[email protected]"
},
"contributors": [
"tlivings",
"tuckbick",
"mcjfunk",
"holmok",
"skphi13",
"joonastanner"
],
"scripts": {
"build": "echo 'noop';",
"test": "npm run lint && npm run nyc",
"lint": "standard ./lib/**/*.js",
"tape": "tape ./tests/**/*.test.js | tap-spec",
"nyc": "nyc --reporter=text --reporter=text-summary --reporter=html --report-dir=docs/reports/coverage npm run tape",
"postnyc": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"commit": "cz"
},
"repository": {
"type": "git",
"url": "https://github.com/expediagroup/catalyst-render"
},
"bugs": {
"url": "https://github.com/expediagroup/catalyst-render/issues"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"keywords": [
"catalyst",
"catalyst-render",
"hapi",
"hapi.js",
"handlebars",
"react",
"node.js",
"homeaway",
"vrbo",
"expedia",
"expediagroup"
],
"license": "Apache-2.0",
"peerDependencies": {
"@hapi/hapi": ">=20.2.1"
},
"dependencies": {
"@hapi/vision": "^6.0.0 || ^7.0.0",
"debug": "^4.1.1",
"handlebars": "^4.7.6",
"joi": "^17.2.0"
},
"devDependencies": {
"@hapi/hapi": "^20.2.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"nyc": "^15.0.0",
"semantic-release": "^19.0.5",
"standard": "^17.0.0",
"tap-spec": "^5.0.0",
"tape": "^5.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}