forked from 18F/18f.gsa.gov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.43 KB
/
package.json
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
{
"name": "18f.gsa.gov",
"version": "1.0.0",
"description": "18F's flagship website",
"main": "config.yml",
"directories": {
"test": "tests"
},
"engines": {
"node": ">=10.14"
},
"scripts": {
"federalist": "mkdir ./.bundle && echo '---\nBUNDLE_GEMFILE: \"GemfileFederalist\"' > ./.bundle/config",
"htmlproofer": "bundle exec htmlproofer _site --disable-external --allow-hash-href --empty-alt-ignore --url-ignore [email protected]",
"htmlproofer-local": "bundle exec htmlproofer _site --disable-external --allow-hash-href --empty-alt-ignore --url-ignore localhost:4000",
"lint-508": "bash ./accessibility-scan",
"restart": "rm -rf _site && ./serve",
"restart-fast": "rm -rf _site && ./serve-fast",
"pa11y-ci": "pa11y-ci --sitemap http://localhost:4000/site/sitemap.xml",
"pa11y-local": "./killport 4000 && ./serve-accesslint && npm run pa11y-ci",
"update-uswds": "cp -r node_modules/uswds/dist/* _sass/_libs/uswds"
},
"repository": {
"type": "git",
"url": "git+https://github.com/18F/18f.gsa.gov.git"
},
"keywords": [
"18f",
"site",
"blog"
],
"author": "18F",
"license": "MIT",
"bugs": {
"url": "https://github.com/18F/18f.gsa.gov/issues"
},
"homepage": "https://18f.gsa.gov",
"devDependencies": {
"pa11y-ci": "^2.4.0"
},
"dependencies": {
"accesslint-cli": "^2.0.0",
"jquery": "^3.6.0",
"netlify-cms": "^2.10.103",
"uswds": "^2.9.0"
}
}