-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
27 lines (27 loc) · 1.18 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
{
"name": "website",
"version": "1.0.0",
"description": "The code for my website, https://aaronslab.dev",
"scripts": {
"min_html": "npx html-minifier -c html-minifier.conf --input-dir public --output-dir public --file-ext html",
"min_css": "npx cleancss -o public -O2 --batch-suffix \"\" -b static/*.css",
"inline_css": "npx critical static/index.html -b static -i > public/index.html && npx critical static/iuse.html -b static -i > public/iuse.html && npx critical static/qna.html -b static -i > public/qna.html && npx critical static/evga.html -b static -i > public/evga.html",
"build": "npm run inline_css && npm run min_html && npm run min_css",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AaronPinto/Website.git"
},
"author": "Aaron Pinto",
"license": "ISC",
"bugs": {
"url": "https://github.com/AaronPinto/Website/issues"
},
"homepage": "https://github.com/AaronPinto/Website#readme",
"devDependencies": {
"clean-css-cli": "^5.6.2",
"critical": "^5.1.1",
"html-minifier": "^4.0.0"
}
}