-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.72 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
{
"name": "w3c-xml-validator",
"version": "2.0.0-alpha",
"description": "A library for programmatically submitting XML for online validation using W3C's Markup Validation Service (https://validator.w3.org/check).",
"main": "index.js",
"bin": {
"w3c-xml-validator": "./bin/cli.js"
},
"scripts": {
"test:unit": "mocha index.spec.js",
"test:func": "mocha test/functional/*.spec.js",
"test": "npm run lint && npm run check-coverage && npm run test:func",
"lint": "standard",
"check-coverage": "nyc npm run test:unit",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && npx --yes codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DPassarelli/w3c-xml-validator.git"
},
"keywords": [
"w3c",
"xml",
"dtd",
"doctype",
"validation"
],
"author": "David Passarelli <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/DPassarelli/w3c-xml-validator/issues"
},
"homepage": "https://github.com/DPassarelli/w3c-xml-validator#readme",
"engines": {
"node": ">=10"
},
"mocha": {
"reporter": "min",
"file": "test/setup.js",
"ui": "bdd"
},
"standard": {
"global": [
"expect"
]
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 92,
"statements": 92,
"functions": 92,
"branches": 92,
"exclude": [
"**/*.spec.js",
"test/"
]
},
"dependencies": {
"debug": "^4.3.4",
"got": "^11.8.5",
"node-html-parser": "^5.3.3"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"mocha": "^9.2.2",
"nock": "^13.2.8",
"nyc": "^15.1.0",
"standard": "^16.0.4"
}
}