-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "express-dot-engine",
"version": "1.0.8",
"description": "Node.js engine using the ultra fast doT templating with support for layouts, partials and friendly for front-end web libraries (Angular, Ember, Backbone...)",
"author": "Dan Le Van",
"homepage": "https://github.com/8lueberry/express-dot-engine",
"keywords": [
"express",
"doT",
"engine",
"template"
],
"repository": {
"type": "git",
"url": "git://github.com/8lueberry/express-dot-engine.git"
},
"bugs": "https://github.com/8lueberry/express-dot-engine/issues",
"contributors": [
"CJ Sturgess <[email protected]> (https://sturgess.co/)"
],
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"engines": {
"node": ">=0.10.0"
},
"engineStrict": true,
"dependencies": {
"dot": "^1.1.2",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15"
},
"optionalDependencies": {},
"devDependencies": {
"mocha": "^2.2.1",
"mock-fs": "^2.5.0",
"should": "^5.2.0"
}
}