-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.23 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.23 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
{
"private": true,
"name": "govuk-frontend-docs",
"version": "1.0.0",
"scripts": {
"start": "bundle exec middleman server",
"postinstall": "npm run build:sassdoc && npm run build:sassdocv5 && npm run build:sassdocv4",
"build:sassdoc": "sassdoc -c sassdoc.config.json --parse node_modules/govuk-frontend/dist/govuk/ > data/sassdoc.json",
"build:sassdocv5": "sassdoc -c sassdoc.config.json --parse node_modules/govuk-frontend-v5/dist/govuk/ > data/sassdoc-v5.json",
"build:sassdocv4": "sassdoc -c sassdoc.config.json --parse node_modules/govuk-frontend-v4/govuk/ > data/sassdoc-v4.json",
"lint": "standard",
"check-links": "hyperlink --canonicalroot https://frontend.design-system.service.gov.uk --internal --recursive build/index.html --skip 'property=\"og:image\"' --skip 'application.js' | tee check-links.log | tap-mocha-reporter min"
},
"devDependencies": {
"govuk-frontend": "github:alphagov/govuk-frontend#cf77c484e",
"govuk-frontend-v4": "npm:govuk-frontend@^4.10.1",
"govuk-frontend-v5": "npm:govuk-frontend@^5.14.0",
"hyperlink": "^5.0.4",
"sassdoc": "^2.7.4",
"standard": "^17.1.2",
"tap-mocha-reporter": "^5.0.4"
},
"engines": {
"node": "^24.11.0",
"npm": "^11.6.0"
}
}