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
26 lines (26 loc) · 704 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 704 Bytes
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
{
"name": "letsencrypt.org",
"version": "1.0.0",
"description": "Let's Encrypt website",
"dependencies": {},
"devDependencies": {
"eslint": "^6.8.0",
"htmlhint": "^0.11.0"
},
"scripts": {
"test:htmllint": "htmlhint 'public/*.html' 'public/**/*.html'",
"test:eslint": "eslint static/js --ext .js",
"test": "npm run test:htmllint && npm run test:eslint",
"build": "hugo -d public"
},
"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"
}