forked from thomasdavis/w3cjs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.21 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
{
"name": "w3c-html-validator",
"version": "1.8.2",
"description": "Check the markup validity of HTML files using the W3C validator",
"license": "MIT",
"type": "module",
"module": "dist/w3c-html-validator.js",
"types": "dist/w3c-html-validator.d.ts",
"exports": "./dist/w3c-html-validator.js",
"files": [
"dist"
],
"bin": {
"html-validator": "bin/cli.js",
"w3c-html-validator": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/center-key/w3c-html-validator.git"
},
"homepage": "https://github.com/center-key/w3c-html-validator",
"bugs": "https://github.com/center-key/w3c-html-validator/issues",
"docs": "https://github.com/center-key/w3c-html-validator#readme",
"author": "Thomas Davis <[email protected]>",
"keywords": [
"html",
"html5",
"validator",
"w3c"
],
"jshintConfig": {
"esversion": 11,
"strict": "implied",
"eqeqeq": true,
"undef": true,
"unused": true,
"varstmt": true,
"node": true,
"mocha": true
},
"runScriptsConfig": {
"clean": [
"rimraf build dist"
],
"lint": [
"jshint . --exclude-path .gitignore",
"eslint --max-warnings 0"
],
"build": [
"tsc",
"add-dist-header build dist"
]
},
"scripts": {
"pretest": "run-scripts clean lint build",
"test": "mocha spec/*.spec.js --timeout 7000",
"examples": "node examples.js"
},
"dependencies": {
"chalk": "~5.3",
"cli-argv-util": "~1.2",
"fancy-log": "~2.0",
"glob": "~11.0",
"slash": "~5.1",
"superagent": "~10.1"
},
"devDependencies": {
"@eslint/js": "~9.17",
"@types/fancy-log": "~2.0",
"@types/node": "~22.10",
"@types/superagent": "~8.1",
"add-dist-header": "~1.4",
"assert-deep-strict-equal": "~1.2",
"copy-file-util": "~1.2",
"copy-folder-util": "~1.1",
"eslint": "~9.17",
"jshint": "~2.13",
"merge-stream": "~2.0",
"mocha": "~11.0",
"rimraf": "~6.0",
"run-scripts-util": "~1.3",
"typescript": "~5.7",
"typescript-eslint": "~8.18"
}
}