-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 4 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 4 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "oink.pgsty.com",
"description": "OINK documentation and regression site",
"repository": "github:pgsty/oink.pgsty.com",
"homepage": "https://oink.pgsty.com",
"license": "Apache-2.0",
"private": true,
"scripts": {
"_build": "npm run _hugo-dev --",
"_check:afdocs": "npx afdocs check --config agent-docs.config.yml --format scorecard",
"check:afdocs:dev": "mkdir -p tmp && bash -o pipefail -c 'npm run -s _check:afdocs -- http://localhost:1313 | tee tmp/afdocs-scorecard.txt'",
"_check:markdown-style": "node scripts/check-markdown-style.mjs",
"_check:rendered-markdown": "node scripts/check-rendered-markdown.mjs public",
"_check:rendered-links": "node scripts/check-rendered-links.mjs public",
"_check:release-pin": "node scripts/check-release-pin.mjs",
"_check:translations": "node scripts/check-doc-translations.mjs --public public",
"_hugo-dev-test": "npm run _hugo-dev -- --templateMetrics --templateMetricsHints",
"_hugo-dev": "npm run _hugo -- -e dev -DFE --printPathWarnings",
"_hugo": "hugo --cleanDestinationDir --logLevel info",
"_serve": "npm run _hugo-dev -- serve --disableFastRender --renderToMemory",
"_test:base": "npm run _check:markdown-style && npm run _check:translations && npm run _check:rendered-markdown && npm run _check:rendered-links",
"_update:goldens": "npm run update:md-goldens && npm run update:favicon-goldens",
"build:production": "npm run _hugo -- --minify",
"build": "cross-env npm run _build -- --baseURL \"${BASE_URL:-http://localhost}\"",
"clean": "rm -Rf public",
"preupdate:goldens": "npm run build",
"seq": "bash -c 'for cmd in \"$@\"; do npm run $cmd || exit 1; done' - ",
"serve": "npm run _serve -- --minify",
"test:a11y": "playwright test tests/browser/accessibility.spec.mjs",
"test:alt-site": "node --test 'tests/alt-site/**/*.test.mjs'",
"test:base": "mkdir -p tmp && bash -o pipefail -c 'npm run build 2>&1 | tee tmp/hugo-build.log' && npm run _test:base",
"test:browser": "npm run seq -- test:a11y test:responsive-shell test:keyboard-nav test:content-components test:code-blocks test:prd5 test:theme-color",
"test:command-palette": "playwright test tests/browser/command-palette.spec.mjs",
"test:code-blocks": "playwright test tests/browser/code-blocks.spec.mjs",
"test:content-components": "playwright test tests/browser/content-components.spec.mjs",
"test:extra": "npm run seq -- test:hugo-build test:alt-site test:md-output test:favicons test:rendered-links test:release-pin-contract",
"test:favicons": "node --test 'tests/favicons/**/*.test.mjs'",
"test:hugo-build": "node --test 'tests/hugo-build/**/*.test.mjs'",
"test:keyboard-nav": "playwright test tests/browser/keyboard-nav.spec.mjs",
"test:md-output": "node --test 'tests/md-output/**/*.test.mjs'",
"test:prd5": "playwright test tests/browser/prd5-scenarios.spec.mjs",
"test:theme-color": "playwright test tests/browser/theme-color.spec.mjs",
"test:responsive-shell": "playwright test tests/browser/responsive-shell.spec.mjs tests/browser/blog.spec.mjs tests/browser/command-palette.spec.mjs",
"test:release-pin-contract": "node --test 'tests/release-pin/**/*.test.mjs'",
"test:rendered-links": "node --test 'tests/rendered-links/**/*.test.mjs'",
"test:release-pin": "npm run _check:release-pin",
"test": "npm run test:base && cross-env OINK_BUILD_LOG=tmp/hugo-build.log npm run test:extra",
"update:favicon-goldens": "node tests/favicons/update-goldens.mjs",
"update:goldens": "npm run _update:goldens",
"update:md-goldens": "node tests/md-output/update-goldens.mjs",
"update:packages": "npx npm-check-updates -u"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@playwright/test": "^1.62.1",
"afdocs": "^0.20.0",
"cross-env": "^10.1.0",
"jsdom": "^30.0.1",
"npm-check-updates": "^23.1.0"
},
"engines": {
"node": ">=24",
"npm": ">=11.16.0"
},
"cSpell:ignore": "- favicons goldens -",
"allowScripts": {
"fsevents@2.3.2": true
}
}