-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.34 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
{
"name": "pattern-lab-minify-html",
"version": "1.1.1",
"description": "The Minify HTML Plugin allows [Pattern Lab Node](https://github.com/pattern-lab/patternlab-node) users to minify and beautify the HTML template of all patterns. If the right options are passed, HTML errors like empty attributes can be prevented (id=\"\" and class=\"\") and the production code size can be reduced.",
"main": "index.js",
"dependencies": {
"fs-extra": "^9.0.1",
"html-minifier": "^4.0.0",
"js-beautify": "^1.13.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JosefBredereck/pattern-lab-minify-html.git"
},
"scripts": {
"lint": "eslint src/** index.js postinstall.js",
"postinstall": "node ./postinstall.js"
},
"author": "Josef Bredereck",
"license": "MIT",
"bugs": {
"url": "https://github.com/JosefBredereck/pattern-lab-minify-html/issues"
},
"homepage": "https://github.com/JosefBredereck/pattern-lab-minify-html",
"devDependencies": {
"eslint": "^7.17.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1"
},
"keywords": [
"Patternlab",
"Pattern",
"Lab",
"node",
"plugin",
"html",
"beautify",
"minify",
"js-beautify",
"html-minifier"
]
}