forked from benjaminrancourt/eleventy-plugin-files-minifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.61 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
{
"name": "@codestitchofficial/eleventy-plugin-minify",
"version": "1.1.2",
"description": "An Eleventy plugin to automatically minify files",
"keywords": [
"11ty",
"code",
"css",
"eleventy",
"eleventy-plugin",
"files",
"html",
"json",
"min",
"minification",
"sherby",
"transform",
"webmanifest",
"xml",
"xsl"
],
"homepage": "https://github.com/CodeStitchOfficial/eleventy-plugin-minify#readme",
"bugs": {
"url": "https://github.com/CodeStitchOfficial/eleventy-plugin-minify/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeStitchOfficial/eleventy-plugin-minify.git"
},
"license": "MIT",
"author": "Ethan Hawes",
"main": ".eleventy.js",
"files": [
".eleventy.js",
"src/files-minifier.js"
],
"scripts": {
"format": "npm-run-all format:*",
"format:eslint": "npm run lint:eslint -- --fix",
"format:prettier": "npm run lint:prettier -- --write",
"lint": "npm-run-all lint:*",
"lint:eslint": "eslint --ignore-path .gitignore . --ext js,json,md",
"lint:prettier": "prettier --ignore-path .gitignore --check '**/*.{js,json,md}'",
"update": "ncu -u && npm i && npm audit fix"
},
"dependencies": {
"html-minifier-terser": "^7.2.0",
"pretty-data": "^0.40.0"
},
"devDependencies": {
"eslint-config-udes": "^1.2.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-prettier": "^4.0.0",
"npm-check-updates": "^17.1.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"prettier-config-udes": "1.0.2"
}
}