-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 2.88 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "npm-pkg-lint",
"version": "3.9.3",
"description": "Opinionated linter for NPM package tarball and package.json metadata",
"keywords": [
"lint",
"npm"
],
"homepage": "https://github.com/ext/npm-pkg-lint",
"bugs": {
"url": "https://github.com/ext/npm-pkg-lint/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ext/npm-pkg-lint.git"
},
"license": "MIT",
"author": "David Sveningsson <ext@sidvind.com>",
"type": "module",
"main": "dist/index.js",
"bin": {
"npm-pkg-lint": "bin/index.js"
},
"files": [
"bin",
"dist",
"!**/*.d.ts",
"!**/*.spec.js"
],
"scripts": {
"prebuild": "tsc",
"build": "node build.mjs",
"eslint": "eslint --cache .",
"eslint:fix": "eslint --cache --fix .",
"prepack": "release-prepack package.json --bundle",
"postpack": "release-postpack package.json",
"prepare": "husky",
"prepublishOnly": "release-prepublish package.json --bundle",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"postpublish": "release-postpublish package.json",
"self-test": "node bin/index.js",
"pretest": "npm run prettier:check && npm run eslint",
"test": "jest"
},
"commitlint": {
"extends": "@html-validate"
},
"lint-staged": {
"*.{ts,js,json,md}": "prettier --write"
},
"prettier": "@html-validate/prettier-config",
"jest": {
"preset": "@html-validate/jest-config",
"testPathIgnorePatterns": [
"/node_modules/",
"dist",
"tests/fixtures"
]
},
"dependencies": {
"@html-validate/stylish": "4.2.0",
"@humanwhocodes/momoa": "3.3.1",
"argparse": "2.0.1",
"execa": "9.3.1",
"find-up": "7.0.0",
"semver": "7.6.3",
"tar": "7.4.3",
"tmp": "0.2.3"
},
"devDependencies": {
"@babel/code-frame": "7.26.2",
"@html-validate/commitlint-config": "3.2.5",
"@html-validate/eslint-config": "5.22.7",
"@html-validate/eslint-config-jest": "5.22.4",
"@html-validate/eslint-config-typescript": "5.22.7",
"@html-validate/eslint-config-typescript-typeinfo": "5.22.7",
"@html-validate/jest-config": "3.10.0",
"@html-validate/prettier-config": "2.5.6",
"@html-validate/release-scripts": "6.7.0",
"@tsconfig/node18": "18.2.4",
"@tsconfig/strictest": "2.0.5",
"@types/argparse": "2.0.17",
"@types/babel__code-frame": "7.0.6",
"@types/jest": "29.5.14",
"@types/node": "18.19.61",
"@types/semver": "7.5.8",
"@types/tar": "6.1.13",
"@types/tmp": "0.2.6",
"esbuild": "0.24.0",
"glob": "11.0.0",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"ts-jest": "29.2.5",
"typescript": "5.6.3"
},
"engines": {
"node": ">= 18.19"
},
"renovate": {
"extends": [
"gitlab>html-validate/renovate-config",
"gitlab>html-validate/renovate-config:bundled"
]
}
}