-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.62 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
{
"name": "node-w3c-validator",
"version": "2.0.2",
"description": "Wrapper for The Nu Html Checker (v.Nu)",
"main": "./lib/validator.js",
"scripts": {
"test": "happiness --verbose | snazzy",
"cli-html": "node ./bin/cmd.js -i ./tests/html/valid-examples/*.html -f html -o ./results/cli-api-report.html",
"cli-lint": "node ./bin/cmd.js -i ./tests/html/valid-examples/*.html -f lint",
"nodejs-api": "node ./tests/demo.js",
"code-style": "happiness --verbose --fix | snazzy"
},
"bin": {
"node-w3c-validator": "bin/cmd.js"
},
"files": [
"bin",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dutchenkoOleg/node-w3c-validator.git"
},
"author": "Oleg Dutchenko <[email protected]>",
"contributors": [
"Michael Kühnel (https://github.com/mischah)",
"Debjeet Biswas (https://github.com/detj)",
"Yunus Gaziev (https://github.com/yunusga)",
"WezomDev (https://github.com/WezomDev)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dutchenkoOleg/node-w3c-validator/issues"
},
"homepage": "https://github.com/dutchenkoOleg/node-w3c-validator#readme",
"keywords": [
"html",
"html5",
"vnu",
"w3c-validator",
"nodejs",
"cli",
"reporting",
"checker"
],
"dependencies": {
"chalk": "^4.1.0",
"commander": "^6.2.0",
"eslint-formatter-pretty": "^4.0.0",
"fileset": "^2.0.3",
"lodash": ">=4.17.20",
"mkdirp": "^1.0.4",
"ora": "^5.1.0",
"vnu-jar": "^21.10.12"
},
"devDependencies": {
"eslint": ">=7.14.0",
"happiness": "^10.0.2",
"snazzy": "^9.0.0"
}
}