-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
106 lines (106 loc) · 2.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "layouts",
"description": "Wraps templates with layouts. Layouts can use other layouts and be nested to any depth. This can be used 100% standalone to wrap any kind of file with banners, headers or footer content. Use for markdown, HTML, handlebars views, lo-dash templates, etc. Layouts can also be vinyl files.",
"version": "3.0.2",
"homepage": "https://github.com/doowb/layouts",
"author": "Brian Woodward (https://github.com/doowb)",
"contributors": [
"Brian Woodward (https://twitter.com/doowb)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)"
],
"repository": "doowb/layouts",
"bugs": {
"url": "https://github.com/doowb/layouts/issues"
},
"license": "MIT",
"files": [
"index.js"
],
"main": "index.js",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "nyc --reporter=text --reporter=html mocha"
},
"dependencies": {
"get-view": "^2.0.0",
"kind-of": "^6.0.2"
},
"devDependencies": {
"arr-union": "^3.1.0",
"gulp-format-md": "^1.0.0",
"mocha": "^3.5.3",
"nyc": "^13.3.0",
"vinyl": "^2.1.0"
},
"keywords": [
"atpl",
"coffee",
"consolidate",
"dot",
"dust",
"eco",
"ect",
"ejs",
"engine",
"engines",
"express",
"haml",
"haml-coffee",
"hamljs",
"handlebars",
"handlebars-layouts",
"hbs",
"hogan",
"hogan-js",
"jade",
"jazz",
"jqtpl",
"layout",
"layouts",
"liquor",
"lodash",
"mote",
"mustache",
"nest",
"nested",
"nunjucks",
"page",
"qejs",
"ractive",
"stack",
"stacked",
"swig",
"template",
"templates",
"templayed",
"tmpl",
"toffee",
"transformers",
"underscore",
"walrus",
"whiskers",
"wrap"
],
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"assemble",
"templates",
"verb"
]
},
"lint": {
"reflinks": true
}
}
}