forked from helpers/helper-date
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 1.89 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
{
"name": "helper-date",
"description": "Format dates with date.js and moment.js. Uses date.js to parse human readable date phrases, and moment to format the rendered output. Should work with any Handlebars, Lo-Dash, underscore, or any template engine that allows helper functions to be registered. Also compatible with verb, assemble and Template.",
"version": "1.0.0",
"homepage": "https://github.com/helpers/helper-date",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "helpers/helper-date",
"bugs": {
"url": "https://github.com/helpers/helper-date/issues"
},
"license": "MIT",
"files": [
"index.js"
],
"main": "index.js",
"engines": {
"node": ">=4.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"date.js": "^0.3.1",
"handlebars-utils": "^1.0.1",
"moment": "^2.18.1"
},
"devDependencies": {
"gulp-format-md": "^1.0.0",
"mocha": "^3.4.2",
"handlebars": "^4.0.10",
"lodash": "^4.17.4"
},
"keywords": [
"calendar",
"compile",
"dash",
"date",
"dateformat",
"dates",
"day",
"engine",
"format",
"handlebars",
"helper",
"helpers",
"lo-dash",
"lodash",
"moment",
"moment.js",
"month",
"months",
"parse",
"parser",
"render",
"template",
"templates",
"underscore",
"week",
"weekday",
"year",
"years"
],
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"handlebars-helper-moment",
"handlebars-helpers",
"helper-dateformat",
"template-helpers"
]
},
"reflinks": [
"assemble",
"handlebars",
"lodash",
"template",
"underscore",
"verb-generate-readme"
],
"lint": {
"reflinks": true
}
}
}