-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "18f.gsa.gov",
"version": "1.0.0",
"description": "18F's flagship website",
"main": "config.yml",
"directories": {
"test": "tests"
},
"engines": {
"node": ">=5.12"
},
"scripts": {
"htmlproofer": "bundle exec htmlproofer _site --disable-external --allow-hash-href --empty-alt-ignore --url-ignore 18f@gsa.gov",
"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",
"test": "bundle exec jekyll test",
"pa11y-ci": "pa11y-ci --sitemap http://localhost:4000/site/sitemap.xml",
"pa11y-local": "./killport 4000 && ./serve-accesslint && npm run pa11y-ci"
},
"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": "^0.3.0"
},
"dependencies": {
"accesslint-cli": "^1.1.1"
}
}