-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·81 lines (81 loc) · 1.48 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
{
"name": "htmlcompile",
"version": "0.4.1",
"description": "Compile, optimize and compress anything to HTML.",
"homepage": "https://github.com/cjpatoilo/htmlcompile",
"repository": "cjpatoilo/htmlcompile",
"license": "MIT",
"author": "CJ Patoilo <[email protected]>",
"bin": "cli.js",
"main": "index.js",
"files": [
"cli.js",
"index.js"
],
"keywords": [
"automation",
"cli",
"compile",
"compress",
"concat",
"ejs",
"framework",
"haml",
"handlebarsjs",
"hds",
"hogan",
"html",
"htmlmin",
"jade",
"minified",
"minify",
"npm",
"optimize",
"package",
"pug",
"render",
"template",
"templates",
"tool",
"tools"
],
"dependencies": {
"gulp": "^4.0.2",
"gulp-ejs": "^5.1.0",
"gulp-haml": "^1.0.1",
"gulp-handlebars": "^5.0.2",
"gulp-hogan": "^2.0.0",
"gulp-htmlmin": "^5.0.1",
"gulp-jade": "^1.1.0",
"gulp-pug": "^4.0.1"
},
"devDependencies": {
"ava": "^3.11.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier-standard": "^16.4.1"
},
"scripts": {
"lint": "prettier-standard --check",
"test": "ava"
},
"engines": {
"node": "^12.18.0",
"npm": "^6.14.5"
},
"prettier": {
"jsxSingleQuote": false,
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": [
"prettier-standard --format",
"git add"
]
}
}