forked from TryGhost/express-hbs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "express-hbs",
"version": "2.0.1",
"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": {
"test": "mocha",
"coverage": "NODE_ENV=testing ./node_modules/.bin/istanbul cover --dir test/coverage -x 'example/**' ./node_modules/.bin/_mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/barc/express-hbs"
},
"bugs": "https://github.com/barc/express-hbs/issues",
"author": "Mario Gutierrez <[email protected]>",
"license": "MIT",
"devDependencies": {
"cookie-parser": "1.4.3",
"express": "4.16.4",
"i18n": "0.8.3",
"istanbul": "0.4.5",
"mocha": "5.2.0",
"rewire": "4.0.1",
"supertest": "3.3.0"
},
"dependencies": {
"bluebird": "^3.5.3",
"handlebars": "4.0.12",
"js-beautify": "1.8.8",
"lodash": "^4.17.11",
"readdirp": "2.2.1"
}
}