-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
54 lines (54 loc) · 2.12 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
{
"name": "open-gsa",
"version": "1.0.0",
"description": "GSA Open Technology",
"scripts": {
"eslint:dist": "eslint assets/js/*.js || exit 0",
"eslint": "npm run eslint:dist",
"clean:dist": "rm -rf _site",
"clean": "npm run clean:dist",
"test:html": "bundle exec htmlproofer _site --disable-external --allow-hash-href --url-ignore [email protected] || exit 0",
"test:html-local": "bundle exec htmlproofer _site --disable-external --allow-hash-href --url-ignore localhost:4000 || exit 0",
"test:pagespeed": "psi-v4 http://cg-06ab120d-836f-49a2-bc22-9dfb1585c3c6.s3-website-us-gov-west-1.amazonaws.com/site/gsa/open-gsa-redesign/ --strategy=mobile || exit 0",
"test:accessibility": "pa11y http://cg-06ab120d-836f-49a2-bc22-9dfb1585c3c6.s3-website-us-gov-west-1.amazonaws.com/site/gsa/open-gsa-redesign/ || exit 0",
"test:css": "stylelint ./_sass/*.scss || exit 0",
"test:js": "npm run eslint",
"test": "npm run test:html && npm run test:pagespeed && npm run test:accessibility && npm run test:js && npm run test:css",
"build:uswds": "cp -R node_modules/uswds/dist/ assets/uswds"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSA/open-gsa-redesign/"
},
"author": "GSA Digital Service",
"contributors": [
"Sara Cope <[email protected]>",
"Jeff Fredrickson <[email protected]>",
"Joe Castle <[email protected]>",
"Ryan Day <[email protected]>"
],
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/GSA/open-gsa-redesign/issues"
},
"homepage": "https://github.com/GSA/open-gsa-redesign/blob/dev/README.md",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-google": "^0.12.0",
"eslint-plugin-import": "^2.18.0",
"pa11y": "^4.6.0",
"postcss": "^5.2.15",
"postcss-cli": "^6.1.2",
"psi-v4": "^4.0.1",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-scss": "^3.8.0",
"uswds": "^1.6.12"
},
"dependencies": {
"details-polyfill": "^1.1.0",
"jquery": "^3.4.1",
"lunr": "^1.0.0"
}
}