-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
85 lines (85 loc) · 1.93 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
{
"name": "template-helpers",
"description": "Generic JavaScript helpers that can be used with any template engine. Handlebars, Lo-Dash, Underscore, or any engine that supports helper functions.",
"version": "1.0.1",
"homepage": "https://github.com/jonschlinkert/template-helpers",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/template-helpers",
"bugs": {
"url": "https://github.com/jonschlinkert/template-helpers/issues"
},
"license": "MIT",
"files": [
"index.js",
"lib"
],
"main": "index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"any": "^1.0.0",
"center-align": "^1.0.1",
"get-value": "^3.0.1",
"helper-slugify": "^0.2.0",
"kind-of": "^6.0.2",
"relative": "^3.0.2",
"right-align": "^0.1.3",
"titlecase": "^1.1.2",
"word-wrap": "^1.2.3"
},
"devDependencies": {
"gulp-format-md": "^2.0.0",
"helper-coverage": "^0.1.3",
"lodash.template": "^4.4.0",
"markdown-link": "^0.1.1",
"mocha": "^5.2.0",
"through2": "^3.0.0",
"verb-generate-readme": "^0.8.0"
},
"keywords": [
"compile",
"engine",
"helper",
"helpers",
"imports",
"lodash",
"process",
"render",
"template",
"underscore"
],
"verb": {
"toc": true,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"helpers": [
"helper-coverage"
],
"related": {
"description": "You might also be interested in the following projects (also visit the [github.com/helpers](https://github.com/helpers), where you can find 60+ additional standalone helpers!):",
"list": [
"assemble",
"handlebars-helpers",
"templates"
]
},
"lint": {
"reflinks": true
},
"reflinks": [
"any",
"slugify",
"verb",
"word-wrap"
]
}
}