-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
69 lines (69 loc) · 1.36 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
{
"name": "gulp-html",
"version": "6.1.0",
"description": "gulp plugin for HTML validation, using the Nu Html Checker (v.Nu)",
"main": "index.js",
"repository": {
"type": "git",
"url": "git https://github.com/validator/gulp-html.git"
},
"keywords": [
"gulpplugin",
"htmllint"
],
"author": "Daijiro Wachi",
"license": "MIT",
"bugs": {
"url": "https://github.com/validator/gulp-html/issues"
},
"homepage": "https://github.com/validator/gulp-html",
"scripts": {
"lint": "xo",
"fix": "xo --fix",
"test": "npm run lint && gulp test"
},
"engines": {
"node": ">=14.18"
},
"dependencies": {
"picocolors": "^1.1.1",
"plugin-error": "^2.0.1",
"through2": "^4.0.2",
"vnu-jar": "24.10.17",
"winston": "^3.15.0"
},
"devDependencies": {
"gulp": "^5.0.0",
"xo": "^0.54.2"
},
"files": [
"index.js"
],
"xo": {
"space": true,
"rules": {
"capitalized-comments": "off",
"comma-dangle": [
"error",
"never"
],
"object-curly-spacing": [
"error",
"always"
],
"operator-linebreak": [
"error",
"after"
],
"quote-props": [
"error",
"consistent"
],
"space-before-function-paren": [
"error",
"never"
],
"unicorn/prefer-module": "off"
}
}
}