-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "gulp-htmlcs",
"version": "0.0.4",
"description": "Gulp plugin for HTML Code Sniffer. Detects violations of a defined coding standard including WCAG 2.0 (A, AA and AAA) and Section 308.",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ironikart/gulp-htmlcs.git"
},
"bin": {
"htmlcs": "bin/index.js"
},
"keywords": [
"gulp",
"htmlcs"
],
"author": "Anthony Barnes",
"license": "MIT",
"bugs": {
"url": "https://github.com/ironikart/gulp-htmlcs/issues"
},
"homepage": "https://github.com/ironikart/gulp-htmlcs#readme",
"dependencies": {
"HTML_CodeSniffer": "git+https://github.com/squizlabs/HTML_CodeSniffer.git#2.0.7",
"chalk": "^1.1.3",
"gulp-util": "^3.0.7",
"merge": "^1.2.0",
"phantomjs": "^1.9.20",
"through2": "^2.0.1"
},
"devDependencies": {
"chai": "^3.2.0",
"gulp": "^3.9.0",
"mocha": "^2.2.5",
"rimraf": "^2.4.2"
}
}