forked from pillarjs/hbs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 862 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 862 Bytes
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
{
"name": "hbs",
"description": "Express.js template engine plugin for Handlebars",
"version": "4.0.6",
"author": "Don Park <donpark@docuverse.com> (http://blog.docuverse.com)",
"contributors": [
"Roman Shtylman <shtylman@gmail.com>"
],
"license": "MIT",
"repository": "pillarjs/hbs",
"main": "lib/hbs.js",
"dependencies": {
"handlebars": "4.5.3",
"walk": "2.3.14"
},
"devDependencies": {
"eslint": "5.16.0",
"mocha": "6.2.1",
"nyc": "14.1.1",
"rimraf": "2.7.1",
"supertest": "4.0.2"
},
"files": [
"lib/",
"HISTORY.md",
"LICENSE",
"README.md"
],
"engines": {
"node": ">= 0.8",
"npm": "1.2.8000 || >= 1.4.16"
},
"scripts": {
"lint": "eslint .",
"test": "mocha --reporter spec test/*/index.js",
"test-cov": "nyc --reporter=html --reporter=text npm test"
}
}