forked from 18F/uswds-data
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
97 lines (97 loc) · 2.72 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
{
"name": "uswds-docs",
"version": "1.3.0",
"description": "Website and documentation on using the U.S. Web Design Standards.",
"scripts": {
"federalist": "gulp build",
"build": "gulp build && bundle exec jekyll build",
"build-css": "gulp sass",
"build-js": "gulp javascript",
"build-img": "gulp images",
"build-fonts": "gulp fonts",
"clean": "gulp clean-assets",
"lint": "gulp eslint scss-lint",
"postinstall": "bundle",
"prestart": "gulp build",
"start": "bundle exec jekyll serve --drafts --future",
"test": "npm run axe && npm run lint && npm run crawl && bundle exec rspec",
"axe": "node config/run-axe.js",
"crawl": "node config/crawl.js",
"watch": "nswatch"
},
"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"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/18F/web-design-standards-docs.git"
},
"author": "18F",
"contributors": [
"Erica Deahl <[email protected]>",
"Jeremia Kimelman <[email protected]>",
"Julia Elman <[email protected]>",
"Katherine Garklavs <[email protected]>",
"Marco Segreto <[email protected]>",
"Maya Benari <[email protected]>",
"Roger Steve Ruiz <[email protected]>",
"Shawn Allen <[email protected]>",
"Will Sullivan <[email protected]>",
"Yoz Grahame <[email protected]>"
],
"license": "SEE LICENSE in LICENSE.md",
"bugs": {
"url": "https://github.com/18F/web-design-standards-docs/issues"
},
"homepage": "https://github.com/18F/web-design-standards-docs#readme",
"dependencies": {
"axe-core": "^2.3.1",
"browserify": "^13.0.0",
"chalk": "^1.1.3",
"chrome-launcher": "^0.3.1",
"chrome-remote-interface": "^0.24.1",
"d3": "^4.10.2",
"del": "^2.2.0",
"express": "^4.15.3",
"gulp": "^3.9.0",
"gulp-clean": "^0.3.1",
"gulp-concat": "^2.6.0",
"gulp-eslint": "^1.1.1",
"gulp-rename": "^1.2.2",
"gulp-scss-lint": "^0.3.9",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.1",
"gulp-util": "^3.0.7",
"jquery": "^2.2.0",
"merge-stream": "^1.0.0",
"node-notifier": "^4.6.0",
"normalize.css": "^3.0.3",
"nswatch": "^0.2.0",
"politespace": "^0.1.4",
"run-sequence": "^1.1.5",
"simplecrawler": "^1.1.3",
"uswds": "^1.3.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}