-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
67 lines (67 loc) · 1.97 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
{
"name": "@renovatebot/pep440",
"version": "0.0.0-semantic-release",
"description": "PEP440 implementation in JavaScript",
"keywords": [
"pep440"
],
"homepage": "https://github.com/renovatebot/pep440#readme",
"bugs": {
"url": "https://github.com/renovatebot/pep440/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/renovatebot/pep440.git"
},
"license": "Apache-2.0",
"author": "Ayoub Kaanich",
"main": "index.js",
"files": [
"index.d.ts",
"index.js",
"lib"
],
"scripts": {
"eslint": "eslint .",
"eslint-fix": "eslint . --fix",
"jest": "jest",
"lint": "run-s eslint markdown-lint prettier",
"lint-fix": "run-s eslint-fix markdown-lint-fix prettier-fix",
"markdown-lint": "markdownlint-cli2 '**/*.md'",
"markdown-lint-fix": "markdownlint-cli2 --fix '**/*.md'",
"prepare": "husky",
"prettier": "prettier --ignore-unknown --check '**/*.*'",
"prettier-fix": "prettier --ignore-unknown --write '**/*.*'",
"test": "run-s prettier eslint markdown-lint jest"
},
"devDependencies": {
"@containerbase/eslint-plugin": "1.1.4",
"@eslint/js": "9.19.0",
"@types/eslint-config-prettier": "6.11.3",
"@types/jest": "29.5.14",
"@types/node": "20.17.16",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint": "9.19.0",
"eslint-config-prettier": "9.1.0",
"eslint-formatter-gha": "1.5.2",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-promise": "7.2.1",
"globals": "15.14.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.4.3",
"markdownlint-cli2": "0.17.2",
"npm-run-all2": "7.0.2",
"prettier": "3.4.2",
"prettier-plugin-packagejson": "2.5.8",
"semantic-release": "24.2.1",
"typescript-eslint": "8.21.0"
},
"packageManager": "pnpm@9.15.4",
"engines": {
"node": "^20.9.0 || ^22.11.0",
"pnpm": "^9.0.0"
}
}