-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.31 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
{
"name": "htaccess-samples",
"version": "1.0.0",
"description": "A .htaccess samples project",
"main": "index.html",
"keywords": [
"htaccess",
"samples"
],
"author": "Markus Hunsalz",
"license": "MIT",
"bugs": {
"url": "https://github.com/ionos-deploy-now/.htaccess-samples/issues"
},
"homepage": "https://github.com/ionos-deploy-now/.htaccess-samples#readme",
"scripts": {
"compile-styles": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 dist/assets/styles/styles.scss dist/assets/styles/styles.css",
"css-minify": "cleancss --format breaksWith=lf --output dist/assets/styles/styles.min.css dist/assets/styles/styles.css",
"src2dist": "cpy . '../dist/' --cwd=src",
"clean": "del -f dist/",
"brotli": "brotli-cli compress dist/performance/brotli/index.html -v",
"gzip": "gzip dist/performance/gzip/index.html",
"build": "npm run clean && npm run src2dist && npm run compile-styles && npm run css-minify && npm run brotli && npm run gzip",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"clean-css-cli": "^5.6.1",
"node-sass": "^7.0.1",
"cpy-cli": "^4.1.0",
"del-cli": "^5.0.0",
"brotli-cli": "^1.0.3",
"gzip-cli": "^1.2.0"
}
}