forked from rootgov/open-gsa-redesign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.79 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
{
"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:pagespeed": "psi https://open.gsa.gov/ --strategy=mobile || exit 0",
"test:accessibility": "pa11y https://open.gsa.gov/ || exit 0",
"test:css": "stylelint ./_sass/*.scss || exit 0",
"test:js": "npm run eslint",
"test": "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",
"build:jquery": "cp node_modules/jquery/dist/jquery.min.* assets/js/lib"
},
"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.2.0",
"eslint-config-google": "^0.12.0",
"eslint-plugin-import": "^2.22.1",
"googleapis": "^61.0.0",
"node-forge": "^1.3.0",
"pa11y": "^5.3.0",
"postcss": "^7.0.36",
"postcss-cli": "^8.0.0",
"psi": "^4.0.1",
"stylelint": "^13.7.2",
"stylelint-config-recommended": "^2.2.0",
"stylelint-scss": "^3.18.0",
"uswds": "^1.6.13"
},
"dependencies": {
"details-polyfill": "^1.1.0",
"jquery": "^3.6.0",
"lunr": "^1.0.0"
}
}