-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.3 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
{
"name": "letsencrypt.org",
"version": "1.0.0",
"description": "Let's Encrypt website",
"devDependencies": {
"autoprefixer": "^10.4.17",
"eslint": "^8.1.0",
"htmlhint": "^0.16.3",
"postcss": "^8.4.35",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"tailwindcss": "^3.4.1"
},
"scripts": {
"test:htmllint": "htmlhint 'content/**/*.html'",
"test:eslint": "eslint static/js --ext .js",
"test": "npm run test:htmllint && npm run test:eslint",
"test:html5validate": "html5validator --root public --blacklist documents a-warm-welcome-to-asn1-and-der donate donate-2024 donate fontawesome-free-6.5.2-web --format text --ignore 'aspect-ratio' --skip-non-html",
"build": "hugo -d public",
"tailwind:watch": "tailwindcss -i ./themes/le-2025/assets/css/tailwind-input.css -o ./themes/le-2025/assets/css/tailwind-output.css --watch",
"tailwind:build": "tailwindcss -i ./themes/le-2025/assets/css/tailwind-input.css -o ./themes/le-2025/assets/css/tailwind-output.css --minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/letsencrypt/website.git"
},
"author": "",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/letsencrypt/website/issues"
},
"homepage": "https://github.com/letsencrypt/website#readme"
}