forked from validator/grunt-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.47 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
70
71
72
73
74
{
"name": "grunt-html",
"description": "Grunt plugin for HTML validation, using the Nu Html Checker (v.Nu)",
"version": "12.0.0",
"homepage": "https://github.com/validator/grunt-html",
"author": "Jörn Zaefferer <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/validator/grunt-html.git"
},
"bugs": {
"url": "https://github.com/validator/grunt-html/issues"
},
"license": "MIT",
"engines": {
"node": ">=8"
},
"scripts": {
"xo": "xo",
"test": "npm run xo && grunt test",
"test:coveralls": "nyc npm test"
},
"dependencies": {
"async": "^3.1.0",
"chalk": "^3.0.0",
"vnu-jar": "19.9.4"
},
"devDependencies": {
"grunt": "^1.0.4",
"grunt-contrib-nodeunit": "^2.0.0",
"nyc": "^14.1.1",
"stripcolorcodes": "^0.1.0",
"xo": "^0.25.3"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"keywords": [
"gruntplugin"
],
"files": [
"{lib,tasks}/**/*.js"
],
"nyc": {
"include": [
"lib/**/*.js"
],
"reporter": [
"html",
"lcov",
"text-summary"
]
},
"xo": {
"esnext": true,
"space": true,
"rules": {
"capitalized-comments": "off",
"object-curly-spacing": [
"error",
"always"
],
"quote-props": [
"error",
"consistent"
],
"space-before-function-paren": [
"error",
"never"
],
"unicorn/filename-case": "off"
}
}
}