-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.37 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
{
"name": "gatsby-plugin-minify-html",
"version": "1.0.4",
"description": "A Gatsby plugin for minify HTML files",
"main": "index.js",
"author": {
"name": "illvart",
"email": "[email protected]",
"url": "https://twitter.com/illvart"
},
"license": "MIT",
"homepage": "https://github.com/illvart/gatsby-plugin-minify-html#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/illvart/gatsby-plugin-minify-html.git"
},
"bugs": {
"url": "https://github.com/illvart/gatsby-plugin-minify-html/issues"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"html",
"htmlmin",
"min",
"minifier",
"minify",
"minification",
"compress",
"compressor",
"optimize",
"optimizer"
],
"scripts": {
"format": "prettier --check \"./**/*.{js,json,yml}\" --write",
"lint": "eslint --ext .js .",
"lint:fix": "eslint --ext .js --fix ."
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"bracketSpacing": false,
"arrowParens": "always",
"trailingComma": "all",
"semi": true
},
"dependencies": {
"glob": "^7.1.6",
"html-minifier-terser": "^5.1.1"
},
"devDependencies": {
"@types/html-minifier-terser": "^5.1.1",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2"
}
}