-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.05 KB
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
{
"name": "w3c-xml-validator",
"version": "2.0.0",
"description": "A library for programmatically submitting XML for online validation using W3C's Markup Validation Service (https://validator.w3.org).",
"main": "index.js",
"type": "module",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"bin": {
"w3c-xml-validator": "./bin/cli.cjs"
},
"scripts": {
"deps:bump": "npx --yes npm-check-updates --enginesNode --interactive --removeRange",
"test": "eslint .",
"lint": "eslint --fix .",
"ci-workflow": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/DPassarelli/w3c-xml-validator"
},
"keywords": [
"w3c",
"xml",
"dtd",
"doctype",
"validation"
],
"author": "David Passarelli <dpassarelli@camelotcg.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/DPassarelli/w3c-xml-validator/issues"
},
"homepage": "https://github.com/DPassarelli/w3c-xml-validator#readme",
"devDependencies": {
"eslint": "9.39.2",
"neostandard": "0.12.2"
}
}