forked from a11yproject/a11yproject.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.49 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
{
"name": "the-a11y-project",
"description": "A community-driven effort to make digital accessibility easier.",
"homepage": "https://a11yproject.com/",
"version": "1.5.1",
"license": "Apache-2.0",
"author": "Dave Rupert (https://daverupert.com/)",
"contributors": [
"Carie Fisher (https://www.linkedin.com/in/cehfisher/)",
"Dennis Gaebel <dennisgaebel@gmail.com> (https://droidpinkman.io/)",
"Eric Bailey <eric.w.bailey@gmail.com> (https://ericwbailey.design/)",
"EJ Mason <hey@ejmason.com> (https://ejmason.com/)",
"Jen Downs (https://jen.dev/)",
"Jerry Jones (http://jeremyjon.es/)",
"Saptak Sengupta (https://saptaks.website/)",
"Scott O'Hara <scottaohara@gmail.com> (https://www.scottohara.me/)",
"Scott Vinkle <scott.vinkle@shopify.com> (https://svinkle.me/)",
"Soren Hamby <scott.vinkle@shopify.com> (https://svinkle.me/)",
"Tatiana Mac (https://tatianamac.com/)",
"Wayne Elgin (https://twitter.com/esjay)"
],
"engines": {
"node": ">=16"
},
"scripts": {
"start": "npm run eleventy-watch & npm run gulp-watch",
"a11yproject": "npm start",
"publish": "eleventy & gulp",
"clean": "rm -rf ./dist",
"eleventy-build": "eleventy",
"eleventy-watch": "eleventy --incremental --watch",
"eleventy-debug": "DEBUG=* eleventy",
"gulp-build": "gulp",
"gulp-watch": "gulp watch"
},
"keywords": [
"a11y",
"accessibility",
"community",
"inclusive-design"
],
"repository": {
"type": "git",
"url": "git://github.com/a11yproject/a11yproject.com"
},
"bugs": {
"url": "https://github.com/a11yproject/a11yproject.com/issues",
"email": "hello@a11yproject.com"
},
"browserslist": [
"last 2 version",
"> 0.25%",
"ie >= 11"
],
"dependencies": {
"normalize.css": "^8.0.1"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-navigation": "0.3.2",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.3",
"eleventy-plugin-nesting-toc": "^1.3.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-cssnano": "^2.1.3",
"gulp-header": "^2.0.9",
"gulp-jshint": "^2.1.0",
"gulp-purgecss": "^4.1.3",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-stylelint": "^13.0.0",
"gulp-svg-sprite": "^2.0.0",
"gulp-svgmin": "^4.1.0",
"gulp-terser": "^2.1.0",
"html-minifier": "^4.0.0",
"jshint": "^2.13.5",
"jshint-stylish": "^2.2.1",
"kss": "^3.1.0",
"markdown-it": "^12.3.2",
"markdown-it-anchor": "^8.4.1",
"markdown-it-footnote": "^3.0.3",
"sass": "1.48.0",
"stylelint": "^13.13.1"
}
}