-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·89 lines (89 loc) · 1.67 KB
/
package.json
File metadata and controls
executable file
·89 lines (89 loc) · 1.67 KB
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
{
"name": "htmlcompile",
"version": "0.8.0",
"description": "Compile, optimize and compress anything to HTML.",
"homepage": "https://github.com/cjpatoilo/htmlcompile",
"repository": "cjpatoilo/htmlcompile",
"license": "MIT",
"author": "CJ Patoilo <cjpatoilo@gmail.com>",
"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": "^5.0.1",
"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": "^5.0.0"
},
"devDependencies": {
"ava": "^7.0.0",
"c8": "^11.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier-standard": "^16.4.1",
"proxyquire": "^2.1.3",
"rewire": "^9.0.1",
"rxjs": "^7.8.2"
},
"scripts": {
"lint": "prettier-standard --check",
"prepare": "husky",
"test": "c8 ava"
},
"c8": {
"all": true,
"include": [
"index.js",
"cli.js"
],
"check-coverage": true,
"lines": 100,
"functions": 100,
"branches": 100,
"statements": 100
},
"engines": {
"node": "24.13.0"
},
"prettier": {
"jsxSingleQuote": false,
"trailingComma": "all"
},
"lint-staged": {
"**/*": "prettier-standard --format"
}
}