forked from yargalot/gulp-accessibility
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.16 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
{
"name": "gulp-accessibility",
"version": "3.0.1",
"description": "Grade your sites accessibility and generate a report from different WCAG levels",
"main": "index.js",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "gulp test",
"prepublish": "npm test",
"demo": "gulp accessSniff-json"
},
"repository": {
"type": "git",
"url": "https://github.com/yargalot/gulp-accessibility.git"
},
"author": "Steven John Miller (http://www.stevenjohnmiller.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/yargalot/gulp-accessibility/issues"
},
"homepage": "https://github.com/yargalot/gulp-accessibility",
"keywords": [
"gulpplugin",
"accessibility",
"a11y",
"analysis",
"report",
"WCAG"
],
"devDependencies": {
"del": "^1.1.1",
"eslint": "^2.1.0",
"gulp": "^3.9.1",
"gulp-jshint": "^2.0.0",
"gulp-nodeunit": "0.0.5",
"gulp-rename": "^1.2.2",
"jshint": "^2.9.1",
"jshint-stylish": "^1.0.1",
"run-sequence": "^1.2.2"
},
"dependencies": {
"access-sniff": "^3.0.0",
"gulp-util": "^3.0.7",
"lodash": "^4.3.0",
"through2": "^0.6.5"
}
}