-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.33 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
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
86
87
88
89
90
91
92
93
94
{
"name": "@fulldecent/nice-checkers-plugin",
"version": "1.3.8",
"description": "HTML-validate plugin and rules you should always use",
"author": "William Entriken",
"license": "MIT",
"homepage": "https://github.com/fulldecent/html-validate-nice-checkers/#readme",
"bugs": {
"url": "https://github.com/fulldecent/html-validate-nice-checkers/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/fulldecent/html-validate-nice-checkers"
},
"keywords": [
"html-validate",
"html",
"validation",
"rules",
"plugin",
"linting"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"test": "vitest --run",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"lint": "tsc --noEmit && prettier --check .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"format:staged": "prettier --write",
"clean": "rimraf dist",
"prepublishOnly": "yarn clean && yarn format:check && yarn lint && yarn test && yarn build",
"dev": "yarn build:watch"
},
"devDependencies": {
"@jaredwray/mockhttp": "^1.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.9.1",
"@types/shell-quote": "^1.7.5",
"@vitest/coverage-v8": "^4.1.7",
"html-validate": "^11.4.0",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"structured-data-testing-tool": "^4.5.0",
"tsup": "^8.5.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
},
"peerDependencies": {
"html-validate": "^10.0.0 || ^11.0.0"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "yarn@4.18.0",
"dependencies": {
"better-sqlite3": "^12.10.0",
"cheerio": "^1.2.0",
"shell-quote": "^1.8.4"
},
"dependenciesMeta": {
"better-sqlite3": {
"built": true
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}