-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
86 lines (86 loc) · 2.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
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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "grunt-html",
"description": "Grunt plugin for HTML validation, using the Nu Html Checker (v.Nu)",
"version": "17.1.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": ">=14.18"
},
"scripts": {
"mocha": "mocha",
"lint": "xo",
"fix": "xo --fix",
"test": "npm run lint && npm run mocha",
"test:grunt": "grunt ci --force",
"test:ci": "npm run mocha && npm run test:server && npm run test:grunt",
"test:coverage": "c8 npm run test:ci",
"test:server": "start-server-and-test start:server http://127.0.0.1:8080 \"npm run mocha -- test/server/\"",
"start:server": "java -Dnu.validator.servlet.bind-address=127.0.0.1 -cp ./node_modules/vnu-jar/build/dist/vnu.jar nu.validator.servlet.Main 8080"
},
"dependencies": {
"async": "^3.2.6",
"picocolors": "^1.1.1",
"vnu-jar": "24.10.17"
},
"devDependencies": {
"@lodder/time-grunt": "^4.0.0",
"c8": "^10.1.2",
"grunt": "^1.6.1",
"mocha": "^10.7.3",
"start-server-and-test": "^2.0.8",
"strip-ansi": "^6.0.1",
"xo": "^0.54.2"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"keywords": [
"gruntplugin"
],
"files": [
"{lib,tasks}/**/*.js"
],
"xo": {
"space": true,
"rules": {
"arrow-body-style": "off",
"capitalized-comments": "off",
"comma-dangle": [
"error",
"never"
],
"object-curly-spacing": [
"error",
"always"
],
"operator-linebreak": [
"error",
"after"
],
"space-before-function-paren": [
"error",
"never"
],
"unicorn/filename-case": "off",
"unicorn/prefer-module": "off",
"unicorn/prevent-abbreviations": "off"
},
"overrides": [
{
"files": "test/**/*.js",
"envs": [
"mocha"
]
}
]
}
}