-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·118 lines (118 loc) · 2.33 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
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "staticsite-cli",
"version": "1.3.1",
"description": "Node-based command line interface for generating static websites.",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/taylortom/staticsite-cli.git"
},
"keywords": [
"taylortom"
],
"author": {
"name": "Thomas Taylor",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/taylortom/staticsite-cli/issues"
},
"homepage": "https://github.com/taylortom/staticsite-cli",
"bin": {
"ss": "index.js"
},
"main": "js/exports.js",
"type": "module",
"templateDefaults": {
"container": "page.html",
"page": "page.hbs"
},
"watch": {
"less": "less",
"hbs": "compile",
"js": "compile",
"json": "compile",
"md": "compile"
},
"blacklist": [
"node_modules",
"package.json",
"package-lock.json"
],
"logging": {
"level": "debug",
"logFilters": {
"debug": [
"*"
],
"normal": [
"command",
"task",
"done",
"info",
"warn",
"error"
],
"basic": [
"command",
"done",
"warn",
"error"
],
"none": []
},
"logTypes": {
"command": {
"prefix": "\n>> ",
"style": "cyan",
"suffix": ".\n"
},
"task": {
"prefix": "\n",
"style": "underline"
},
"info": {
"prefix": ">> "
},
"done": {
"prefix": "\n>> ",
"suffix": ".\n",
"style": "green"
},
"debug": {},
"warn": {
"prefix": "!! ",
"style": "yellow"
},
"error": {
"prefix": "!! ",
"style": "red"
}
}
},
"testing": {
"serverPort": 3333
},
"dependencies": {
"async": "^2.6.4",
"chalk": "2.4.1",
"columnify": "1.5.4",
"finalhandler": "1.1.1",
"fs-extra": "7.0.0",
"ftp": "0.3.10",
"handlebars": "^4.7.7",
"highlight.js": "^11.4.0",
"html2plaintext": "^2.1.4",
"less": "3.8.1",
"less-plugin-clean-css": "github:less/less-plugin-clean-css",
"marked": "^4.0.12",
"minimist": "^1.2.5",
"moment": "^2.29.4",
"opn": "5.3.0",
"path": "0.12.7",
"prompt": "1.0.0",
"querystring": "0.2.0",
"serve-static": "1.13.2"
}
}