-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "grunt-accessibility",
"description": "Grade your site's accessibility and generate a report from different WCAG levels",
"version": "6.0.0",
"homepage": "https://github.com/yargalot/grunt-accessibility",
"author": "Steven John Miller (http://www.stevenjohnmiller.com/)",
"repository": {
"type": "git",
"url": "git+https://github.com/yargalot/grunt-accessibility.git"
},
"bugs": {
"url": "https://github.com/yargalot/grunt-accessibility/issues"
},
"license": "MIT",
"main": "tasks/grunt-accessibility.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"prepublish": "grunt test",
"test": "grunt test"
},
"dependencies": {
"access-sniff": "^3.2.0"
},
"devDependencies": {
"grunt": "^1.0.0",
"grunt-bump": "^0.8.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-contrib-watch": "~1.0.0",
"load-grunt-tasks": "^3.5.0",
"time-grunt": "^1.3.0"
},
"peerDependencies": {
"grunt": ">=0.4.5"
},
"keywords": [
"gruntplugin",
"accessibility",
"a11y",
"analysis",
"report",
"WCAG"
],
"files": [
"tasks"
]
}