forked from 18F/uswds-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 756 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "uswds-jekyll",
"private": true,
"author": "18F",
"license": "CC0-1.0",
"scripts": {
"start": "bundle exec jekyll serve",
"start-detached": "bundle exec jekyll serve --detach",
"setup-jekyll": "bundle",
"setup-uswds": "npm run sync-assets && npm run sync-sass",
"sync-assets": "rsync -avr --delete node_modules/uswds/dist/ assets/uswds/ --exclude=/*.md --exclude=/*.zip --exclude=/css --exclude=/scss",
"sync-sass": "rsync -avr --delete node_modules/uswds/src/stylesheets/ _sass/uswds/src/",
"pa11y-ci": "pa11y-ci --threshold=7"
},
"dependencies": {
"@18f/private-eye": "^2.0.0",
"uswds": "^2.11.2"
},
"devDependencies": {
"cached-path-relative": "^1.0.2",
"pa11y-ci": "^2.4.0"
}
}