-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.11 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
{
"author": "Paweł Mendelski <[email protected]>",
"name": "gulp-html-lint",
"version": "0.0.2",
"description": "Gulp plugin for htmllint",
"main": "index.js",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/coditorium/gulp-html-lint.git"
},
"bugs": {
"url": "https://github.com/coditorium/gulp-html-lint/issues"
},
"scripts": {
"start": "index.js",
"test": "gulp lint test",
"ci": "gulp ci",
"coveralls": "cat build/test/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"coditorium",
"gulp",
"htmllint",
"html lint"
],
"engines": {
"node": ">=5.0.0"
},
"dependencies": {
"htmllint": "^0.6.0",
"text-table": "^0.2.0",
"through2": "^2.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"gulp-eslint": "^2.0.0",
"gulp-if": "^2.0.0",
"gulp-istanbul": "^0.10.4",
"gulp-mocha": "^2.2.0",
"gulp-sync": "^0.1.4",
"gulp-util": "^3.0.7",
"lodash": "^4.8.2",
"minimist": "^1.2.0",
"mocha-jenkins-reporter": "^0.2.2"
}
}