-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 2.16 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
{
"name": "@renovatebot/ruby-semver",
"version": "0.0.0-semantic-release",
"description": "Ruby SemVer in TypeScript.",
"repository": {
"type": "git",
"url": "https://github.com/renovatebot/ruby-semver.git"
},
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc -p tsconfig.lib.json",
"eslint": "eslint .",
"eslint-fix": "eslint . --fix",
"jest": "jest",
"jest-debug": "node --expose-gc --inspect-brk node_modules/jest/bin/jest --runInBand",
"lint": "run-s eslint markdown-lint prettier",
"lint-fix": "run-s eslint-fix markdown-lint-fix prettier-fix",
"markdown-lint": "markdownlint-cli2",
"markdown-lint-fix": "markdownlint-cli2-fix",
"prepack": "run-s build",
"prepare": "run-s 'prepare:*'",
"prepare:husky": "husky",
"prettier": "prettier --check --ignore-unknown '**/*.*'",
"prettier-fix": "prettier --write --ignore-unknown '**/*.*'",
"test": "run-s lint type-check jest",
"type-check": "tsc"
},
"devDependencies": {
"@containerbase/eslint-plugin": "1.1.1",
"@eslint/js": "9.15.0",
"@renovate/eslint-plugin": "https://github.com/renovatebot/eslint-plugin#v0.0.5",
"@tsconfig/node20": "20.1.4",
"@types/eslint-config-prettier": "6.11.3",
"@types/jest": "29.5.14",
"@types/node": "20.17.6",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-formatter-gha": "1.5.1",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-promise": "7.1.0",
"globals": "15.12.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"lint-staged": "15.2.10",
"markdownlint-cli2": "0.15.0",
"npm-run-all2": "7.0.1",
"prettier": "3.3.3",
"prettier-plugin-packagejson": "2.5.5",
"semantic-release": "24.2.0",
"ts-jest": "29.2.5",
"typescript": "5.7.2",
"typescript-eslint": "8.15.0"
},
"packageManager": "[email protected]",
"engines": {
"node": "^20.9.0 || ^22.11.0",
"pnpm": "^9.0.0"
}
}