-
Notifications
You must be signed in to change notification settings - Fork 214
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.84 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
34
35
36
37
38
39
40
41
42
43
{
"name": "Layer5 Docs",
"version": "0.9.1",
"description": "Layer5 Product Documentation",
"repository": "github:layer5io/docs",
"homepage": "https://docs.layer5.io",
"author": "Layer5 Authors",
"license": "Apache-2.0",
"bugs": "https://github.com/layer5io/docs/issues",
"spelling": "cSpell:ignore HTMLTEST hugo htmltest markdownlint precheck postbuild -",
"scripts": {
"_hugo": "hugo",
"_hugo-dev": "npm run _hugo -- -e dev -DFE",
"_build": "npm run _hugo-dev -- --cleanDestinationDir",
"_site": "npm run _hugo-dev -- --minify server",
"_serve": "npm run _hugo-dev -- --minify --watch=false server",
"_check:links": "echo \"Skipped: go run github.com/wjdp/htmltest@${HTMLTEST_VERSION:-v0.17.0} -s\"",
"build": "npm run _build",
"build:preview": "npm run _hugo-dev -- --cleanDestinationDir --minify --baseURL \"${BASE_URL:-${DEPLOY_PRIME_URL:-/}}\"",
"build:production": "npm run _hugo -- --cleanDestinationDir --minify --gc",
"site": "npm run _site",
"serve": "npm run _serve",
"clean": "rm -Rf public/* resources",
"make:public": "git init -b main public",
"check:links": "npm run _check:links",
"precheck:links": "npm run build",
"postbuild:preview": "npm run _check:links",
"postbuild:production": "npm run _check:links",
"test": "npm run check:links",
"_lint:md": "markdownlint-cli2 \"content/**/*.md\"",
"lint": "npm run _lint:md",
"lint:fix": "npm run _lint:md -- --fix",
"update:pkg:dep": "npm install --save-dev autoprefixer@latest postcss@latest postcss-cli@latest markdownlint-cli2@latest",
"update:pkg:hugo": "npm install --save-dev --save-exact hugo-extended@latest"
},
"devDependencies": {
"autoprefixer": "^10.5.0",
"hugo-extended": "0.158.0",
"markdownlint-cli2": "^0.18.1",
"postcss": "^8.5.25",
"postcss-cli": "^11.0.1"
}
}