-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "express-hbs",
"version": "2.5.0",
"description": "Express handlebars template engine complete with multiple layouts, partials and blocks.",
"keywords": [
"express4",
"express",
"handlebars",
"layout",
"partials"
],
"main": "index.js",
"directories": {
"example": "example"
},
"scripts": {
"lint": "eslint --ext .js --cache lib/**",
"test": "mocha",
"posttest": "yarn lint",
"coverage": "nyc yarn test",
"preship": "yarn test",
"ship": "STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then yarn publish && git push --follow-tags; fi"
},
"repository": {
"type": "git",
"url": "https://github.com/TryGhost/express-hbs"
},
"bugs": "https://github.com/TryGhost/express-hbs/issues",
"author": "Mario Gutierrez <[email protected]>",
"license": "MIT",
"devDependencies": {
"cookie-parser": "1.4.7",
"eslint": "8.57.0",
"express": "4.21.1",
"i18n": "0.15.1",
"mocha": "10.8.2",
"nyc": "15.1.0",
"rewire": "7.0.0",
"supertest": "7.0.0"
},
"dependencies": {
"handlebars": "^4.7.7",
"lodash": "^4.17.21",
"readdirp": "^3.6.0"
},
"optionalDependencies": {
"js-beautify": "^1.13.11"
}
}