-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.27 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
{
"name": "taft",
"version": "0.8.0",
"description": "Generate static html files from Handlebars files with YAML front matter",
"main": "index.js",
"scripts": {
"test": "mocha tests/*.js",
"docs": "jsdoc index.js lib/* -d docs",
"postversion": "grep $npm_package_version bin/taft.js || echo 'update bin/taft.js with new version'"
},
"bin": {
"taft": "bin/taft.js"
},
"repository": {
"type": "git",
"url": "http://github.com/fitnr/taft"
},
"engines": {
"node": ">=10.0.0"
},
"keywords": [
"command line utilities",
"yfm",
"yaml front matter",
"yaml",
"handlebars",
"static site generator",
"html",
"template"
],
"author": "Neil Freeman",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/fitnr/taft/issues"
},
"homepage": "https://github.com/fitnr/taft",
"dependencies": {
"commander": "^2.20.3",
"concat-stream": "^1.6.2",
"glob": "^6.0.4",
"gray-matter": "^2.1.1",
"handlebars": "^4.7.6",
"ini": "^1.3.4",
"js-yaml": "^3.14.1",
"merge": "^2.1.1",
"mkdirp": "^0.5.6",
"rw": "^1.3.3"
},
"devDependencies": {
"handlebars-helper-br": "^0.1.0",
"jsdoc": "^3.6.11",
"mocha": "^7.2.0",
"rewire": "^2.5.2",
"should": "^8.4.0"
}
}