-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
105 lines (105 loc) · 2.45 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
{
"name": "squido",
"version": "1.0.26",
"description": "A dead-simple static HTML website generator for super fast static websites which are easier to develop, more secure and dirt cheaper to host.",
"bin": {
"squido": "cli.js"
},
"scripts": {
"test": "ava",
"build": "node cli.js build",
"clean": "node cli.js clean",
"serve": "node cli.js serve -c -w -b",
"lint": "eslint ./"
},
"ava": {
"serial": true,
"files": [
"./tests/specs/*.js"
],
"timeout": "45s",
"verbose": true,
"environmentVariables": {
"NODE_ENV": "test",
"NODE_NO_WARNINGS": "1"
}
},
"homepage": "https://squido.markmoffat.com",
"repository": {
"type": "git",
"url": "git://github.com/mrvautin/squido.git"
},
"keywords": [
"static",
"builder",
"website",
"blog",
"fast",
"generator",
"html",
"framework",
"cms",
"bootstrap",
"cli",
"dev",
"squido",
"documentation",
"handlebars",
"ejs",
"pug"
],
"readmeFilename": "README.md",
"author": "@mrvautin",
"license": "MIT",
"dependencies": {
"adm-zip": "^0.5.5",
"chalk": "^4.1.0",
"cheerio": "^1.0.0-rc.10",
"chokidar": "^3.5.1",
"clean-css": "^5.1.2",
"clear-module": "^4.1.1",
"commander": "^2.6.0",
"date-fns": "^2.23.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-handlebars": "^5.3.0",
"feed": "^4.2.2",
"fs-extra": "^9.1.0",
"glob": "^7.1.6",
"globby": "^11.0.3",
"handlebars": "^4.7.7",
"highlight.js": "^10.7.1",
"js-yaml": "^4.0.0",
"lodash": "^4.17.21",
"lunr": "^2.3.9",
"markdown-it": "^12.0.4",
"markdown-it-anchor": "^7.1.0",
"markdown-it-attrs": "^4.0.0",
"md5": "^2.3.0",
"md5-file": "^5.0.0",
"netlify": "^13.1.19",
"node-fetch": "^2.6.1",
"pug": "^3.0.2",
"reading-time": "^1.5.0",
"sitemap": "^6.4.0",
"slugify": "^1.5.0",
"smart-matter": "^1.0.1",
"string-strip-html": "^8.2.7",
"turndown": "^7.0.0",
"uglify-js": "^3.13.3",
"uniqid": "^5.3.0",
"xml2js": "^0.6.2",
"yup": "^1.0.2"
},
"devDependencies": {
"ava": "^6.1.3",
"eslint": "^7.23.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-extra-rules": "0.0.0-development",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"supertest": "^6.1.3"
}
}