forked from validator/validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1020 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 1020 Bytes
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
{
"name": "vnu-jar",
"version": "latest",
"description": "Provides the Nu Html Checker «vnu.jar» file",
"main": "vnu-jar.js",
"author": "sideshowbarker@gmail.com",
"engines": {
"node": ">=0.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/validator/validator.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/validator/validator/issues"
},
"homepage": "https://github.com/validator/validator#readme",
"keywords": [
"checker",
"html",
"lint",
"linter",
"jar",
"nu",
"validator",
"vnu",
"w3c"
],
"files": [
"build/dist/vnu.jar",
"vnu-java-downloader.js",
"vnu-jar.js"
],
"bin": {
"vnu": "./vnu-jar.js"
},
"scripts": {
"postinstall": "node vnu-java-downloader.js",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@types/node": "^25.0.3",
"vitest": "^4.0.16"
}
}