-
Notifications
You must be signed in to change notification settings - Fork 207
/
package.json
40 lines (40 loc) · 982 Bytes
/
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
{
"name": "hbs",
"description": "Express.js template engine plugin for Handlebars",
"version": "4.2.0",
"author": "Don Park <[email protected]> (http://blog.docuverse.com)",
"contributors": [
"Roman Shtylman <[email protected]>"
],
"license": "MIT",
"repository": "pillarjs/hbs",
"main": "lib/hbs.js",
"dependencies": {
"handlebars": "4.7.7",
"walk": "2.3.15"
},
"devDependencies": {
"eslint": "7.32.0",
"eslint-plugin-markdown": "2.2.1",
"mocha": "9.1.3",
"nyc": "15.1.0",
"rimraf": "2.7.1",
"supertest": "6.1.6"
},
"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 --ui qunit --bail test/*/index.js",
"test-ci": "nyc --reporter=lcov --reporter=text npm test",
"test-cov": "nyc --reporter=html --reporter=text npm test"
}
}