-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.4 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
{
"name": "npm-min-peer",
"version": "3.0.5",
"description": "Get minimum version required by a peerDependency",
"keywords": [
"ci",
"matrix",
"peerDependency",
"npm"
],
"homepage": "https://github.com/ext/npm-min-peer",
"bugs": {
"url": "https://github.com/ext/npm-min-peer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ext/npm-min-peer.git"
},
"license": "MIT",
"author": "David Sveningsson <[email protected]>",
"main": "dist/index.js",
"bin": {
"npm-min-peer": "bin/index.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"prebuild": "tsc",
"build": "esbuild src/index.ts --bundle --platform=node --target=node18 --external:./package.json --analyze --sourcemap --outdir=dist",
"postbuild": "dts-bundle-generator -o dist/index.d.ts src/index.ts",
"eslint": "eslint .",
"eslint:fix": "eslint --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",
"test": "jest"
},
"commitlint": {
"extends": "@html-validate"
},
"prettier": "@html-validate/prettier-config",
"jest": {
"preset": "@html-validate/jest-config"
},
"dependencies": {
"argparse": "2.0.1",
"find-up": "7.0.0",
"semver": "7.7.1"
},
"devDependencies": {
"@html-validate/commitlint-config": "3.4.2",
"@html-validate/eslint-config": "5.26.5",
"@html-validate/eslint-config-jest": "5.26.4",
"@html-validate/eslint-config-typescript": "5.26.5",
"@html-validate/eslint-config-typescript-typeinfo": "5.26.5",
"@html-validate/jest-config": "3.12.0",
"@html-validate/prettier-config": "2.5.13",
"@html-validate/release-scripts": "6.8.0",
"@types/argparse": "2.0.17",
"@types/jest": "29.5.14",
"@types/node": "18.19.76",
"@types/semver": "7.5.8",
"dts-bundle-generator": "9.5.1",
"esbuild": "0.25.0",
"husky": "9.1.7",
"jest": "29.7.0",
"npm-pkg-lint": "3.10.10",
"ts-jest": "29.2.6",
"typescript": "5.7.3"
},
"engines": {
"node": ">= 18"
},
"renovate": {
"extends": [
"gitlab>html-validate/renovate-config"
]
}
}