This repository has been archived by the owner on Jul 28, 2020. It is now read-only.
forked from uswds/uswds-site
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
102 lines (102 loc) · 2.83 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
{
"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": [
"Atul Varma <[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": "gulp build && bundle exec jekyll build",
"build-css": "gulp sass",
"build-fonts": "gulp fonts",
"build-img": "gulp images",
"build-js": "gulp javascript",
"clean": "gulp clean-assets",
"crawl": "node config/crawl.js",
"federalist": "gulp build",
"postinstall": "bundle",
"lint": "gulp eslint scss-lint",
"prestart": "gulp build",
"start": "bundle exec jekyll serve --no-watch",
"test": "npm run axe && npm run lint && npm run crawl && bundle exec rspec",
"watch": "nswatch",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"axe-core": "^2.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"browserify": "^16.2.3",
"chalk": "^2.4.1",
"cheerio": "^1.0.0-rc.2",
"chrome-launcher": "^0.10.2",
"chrome-remote-interface": "^0.25.6",
"del": "^3.0.0",
"express": "^4.16.2",
"gulp": "^4.0.0",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.0",
"gulp-eslint": "^4.0.2",
"gulp-rename": "^1.2.2",
"gulp-scss-lint": "^0.6.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.7",
"jquery": "^3.3.1",
"merge-stream": "^1.0.0",
"node-notifier": "^5.2.1",
"normalize.css": "^8.0.0",
"nswatch": "^0.2.0",
"simplecrawler": "^1.1.6",
"snyk": "^1.134.2",
"uswds": "1.6.6",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"watch": {
"./css/**/*.scss": [
"build-css"
],
"./img": [
"build-img"
],
"./js/**/*.js": [
"build-js"
],
"./node_modules/uswds/src/stylesheets": [
"build-css"
],
"./node_modules/uswds/src/fonts": [
"build-fonts"
],
"./node_modules/uswds/src/img": [
"build-img"
],
"./node_modules/uswds/src/js": [
"build-js"
]
},
"snyk": true
}