-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 997 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
{
"name": "express-partial-templates",
"version": "0.2.1",
"description": "A middleware that will use the views path to create a partials key-value object that makes the file paths of partial templates acessible on the locals property of an HTTP response.",
"main": "index.js",
"scripts": {
"test": "mocha ./test --require ./test/helper"
},
"repository": {
"type": "git",
"url": "https://github.com/UKHomeOffice/express-partial-templates.git"
},
"keywords": [
"middleware",
"express",
"partials",
"hogan",
"mustache"
],
"author": "Seb Insua",
"license": "MIT",
"bugs": {
"url": "https://github.com/UKHomeOffice/express-partial-templates/issues"
},
"homepage": "https://github.com/UKHomeOffice/express-partial-templates",
"dependencies": {
"fs-tree-traverse": "^0.1.3",
"underscore": "^1.7.0"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.1.1",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0"
}
}