-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 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
{
"name": "ttwoee",
"description": "Tale of Two Wastelands: Over-Encumbered Edition built with Pug",
"license": "Unlicense",
"version": "3.2.2",
"homepage": "https://ttwoee.com",
"repository": "github:themagicteeth/ttwoee",
"bugs": "https://github.com/themagicteeth/ttwoee/issues",
"author": {
"name": "themagicteeth",
"email": "[email protected]",
"url": "https://github.com/themagicteeth"
},
"scripts": {
"build:clean": "rimraf ./dist/guide.html",
"build:css": "uglifycss ./src/css/style.css > ./src/css/style.min.css",
"build:pug": "pug ./src/pages/ -o ./dist",
"build": "yarn build:css && yarn build:pug && yarn build:html-changelog && yarn build:html && yarn build:clean",
"build:html": "html-minifier --use-short-doctype --minify-css true --collapse-boolean-attributes --remove-attribute-quotes --remove-comments --remove-optional-tags --remove-redundant-attributes --remove-empty-attributes --sort-attributes --sort-class-name --remove-empty-elements ./dist/guide.html -o ./dist/index.html",
"build:html-changelog": "html-minifier --use-short-doctype --minify-css true --collapse-boolean-attributes --remove-attribute-quotes --remove-comments --remove-optional-tags --remove-redundant-attributes --remove-empty-attributes --sort-attributes --sort-class-name --remove-empty-elements ./dist/changelog.html -o ./dist/changelog.html"
},
"devDependencies": {
"html-minifier": "^4.0.0",
"normalize.css": "^8.0.1",
"pug": "^3.0.1",
"pug-cli": "^1.0.0-alpha6",
"rimraf": "^2.6.3",
"uglifycss": "^0.0.29",
"yarn": "^1.22.0"
}
}