forked from letsencrypt/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.08 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.08 KB
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",
"dependencies": {},
"devDependencies": {
"eslint": "^6.8.0",
"htmlhint": "^0.11.0",
"node-sass": "^4.13.0",
"sass-lint": "^1.13.1",
"uglify-es": "^3.3.9"
},
"scripts": {
"test:htmllint": "htmlhint 'public/*.html' 'public/**/*.html'",
"test:eslint": "eslint static/js --ext .js",
"test:sass": "sass-lint --verbose",
"test": "npm run test:htmllint && npm run test:eslint && npm run test:sass",
"build:js": "uglifyjs static/js/main.js -o static/js/main.min.js -c -m",
"build:scss": "node-sass --output-style compressed src/css/main.scss static/css/main.min.css",
"build:hugo": "hugo -d public",
"build": "npm run build:js && npm run build:scss && npm run build:hugo"
},
"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"
}