-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
52 lines (52 loc) · 1.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
{
"name": "html-validator",
"version": "6.0.1",
"description": "Validate html using validator.w3.org/nu og html-validate",
"license": "MIT",
"author": {
"name": "Geir Gåsodden",
"email": "[email protected]",
"url": "https://github.com/zrrrzzt"
},
"main": "index.js",
"engines": {
"node": ">=14.19.2"
},
"scripts": {
"setup": "npm install",
"test": "standard && tap --reporter=spec test/**/*.js",
"coverage": "tap test/**/*.js --coverage",
"standard-fix": "standard --fix",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install"
},
"keywords": [
"html-validator",
"html-validate",
"validation",
"validator.w3.org"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zrrrzzt/html-validator.git"
},
"bugs": {
"url": "https://github.com/zrrrzzt/html-validator/issues"
},
"homepage": "https://github.com/zrrrzzt/html-validator#readme",
"dependencies": {
"axios": "0.27.2",
"html-validate": "7.0.0",
"valid-url": "1.0.9"
},
"devDependencies": {
"standard": "17.1.2",
"tap": "16.3.10"
},
"files": [
"lib/*.js",
"index.js"
],
"tap": {
"check-coverage": false
}
}