-
Notifications
You must be signed in to change notification settings - Fork 147
/
package.json
102 lines (102 loc) · 4.42 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "uswds-site",
"private": true,
"homepage": "https://github.com/uswds/uswds-site#readme",
"bugs": {
"url": "https://github.com/uswds/uswds-site/issues"
},
"license": "SEE LICENSE IN LICENSE.md",
"author": "18F",
"contributors": [
"Adam Biagianti <[email protected]>",
"Atul Varma <[email protected]>",
"Brian Hurst <[email protected]>",
"Erica Deahl <[email protected]>",
"Jeremia Kimelman <[email protected]>",
"John Donmoyer <[email protected]>",
"Julia Elman <[email protected]>",
"Katherine Garklavs <[email protected]>",
"Marco Segreto <[email protected]>",
"Maya Benari <[email protected]>",
"Roger Steve Ruiz <[email protected]>",
"Ryan Thurwell <[email protected]>",
"Shawn Allen <[email protected]>",
"Will Sullivan <[email protected]>",
"Yoz Grahame <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/uswds/uswds-site.git"
},
"scripts": {
"axe": "node config/run-axe.js",
"build": "npx gulp build && bundle exec jekyll build",
"build:all-assets": "npx gulp build",
"build:css": "npx gulp sass",
"build:js": "npx gulp js",
"build:sprite": "npx gulp compileIcons",
"build:uswds": "npx gulp buildUSWDSComponents",
"clean": "npx gulp cleanAssets",
"crawl": "node config/crawl.js",
"federalist": "npx gulp build",
"lint": "npx gulp lintJS lintSass && npm run prettier:scss",
"prestart": "npx gulp build",
"proof": "bundle exec htmlproofer --enforce-https=false --allow-missing-href=true --ignore-status-codes 0,403,429,503,302 --swap-urls 'https\\://designsystem.digital.gov/:/' --ignore-urls '/github.com/uswds/uswds/issues/' --ignore-files '/whats-new/updates/(2017|2018|2019|2020|2021)/,/documentation/code-guidelines/' ./_site",
"serve": "npm run build:all-assets && bundle exec jekyll serve --drafts --future --incremental --livereload --host=localhost",
"serve:package": "npm run build:uswds && npm run serve",
"serve:local": "export LIBRARY_BASE_URL=\"http://localhost:3000\" && npm run serve",
"start": "concurrently 'bundle exec jekyll serve --drafts --future --livereload --incremental --host=localhost' 'npx gulp watch'",
"test": "npx snyk test && npm run test:core",
"test:detached": "npm run start-detached && npm run test:core",
"test:core": "bundle exec rspec && npm run lint && npm run proof && npm run pa11y-ci:sitemap && npm run pa11y-ci:sitemap-mobile",
"test:ci": "npm run build:all-assets && npm run test:detached",
"test:full": "npm run startup && npm run test:detached && npm run test:stop",
"test:stop": "pkill -f jekyll",
"start-detached": "bundle exec jekyll serve --detach --host=localhost",
"startup": "npm install && bundle install && npm run build:uswds && npm run build:all-assets",
"pa11y-ci:sitemap": "pa11y-ci --sitemap http://localhost:4000/sitemap.xml --sitemap-exclude '/*.pdf|next|together/'",
"pa11y-ci:sitemap-mobile": "pa11y-ci --config .pa11yci--mobile --sitemap http://localhost:4000/sitemap.xml --sitemap-exclude '/*.pdf|next|together/'",
"pa11y-ci:sitemap-json": "pa11y-ci --json > pa11y-results.json --sitemap http://localhost:4000/sitemap.xml --sitemap-exclude '/*.pdf|next|together/'",
"prettier:scss": "npx prettier --write './css/**/*.scss'"
},
"devDependencies": {
"@18f/identity-stylelint-config": "^2.0.0",
"ansi-colors": "^4.1.3",
"axe-core": "^4.10.0",
"browserify": "^17.0.1",
"chalk": "^4.1.2",
"cheerio": "^1.0.0",
"chrome-launcher": "^0.14.1",
"chrome-remote-interface": "^0.33.0",
"concurrently": "^8.2.2",
"del": "^6.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"fancy-log": "^2.0.0",
"gulp": "^5.0.0",
"gulp-cli": "^3.0.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^6.0.0",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"jquery": "^3.7.1",
"node-notifier": "^10.0.1",
"pa11y-ci": "^2.4.2",
"postcss": "^8.4.47",
"postcss-csso": "^6.0.1",
"prettier": "^2.8.8",
"sass": "^1.79.4",
"simplecrawler": "^1.1.9",
"snyk": "^1.1293.1",
"stylelint": "^15.11.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"snyk": true,
"dependencies": {
"@uswds/compile": "1.2.0",
"@uswds/uswds": "3.10.0"
}
}