-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.32 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.32 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
{
"name": "maven-publish-action",
"version": "2.13.0",
"description": "GitHub Action for automatically publishing to Maven central",
"author": {
"name": "Wasiq Bhamla",
"email": "wasbhamla2005@gmail.com",
"url": "https://github.com/WasiqB"
},
"repository": "github:WasiqB/maven-publish-action",
"private": true,
"main": "dist/index.js",
"engines": {
"node": ">=22"
},
"scripts": {
"bundle": "npm run format:fix && npm run package",
"lint": "eslint 'src/*.ts' '__tests__/*.ts'",
"lint:fix": "eslint --fix 'src/*.ts' '__tests__/*.ts'",
"format": "prettier --check 'src/*.ts' '__tests__/*.ts'",
"format:fix": "prettier --write 'src/*.ts' '__tests__/*.ts'",
"package": "ncc build src/index.ts -o dist --minify -a --license license.txt",
"test": "jest",
"release": "release-it --ci",
"release:major": "pnpm release major",
"release:minor": "pnpm release minor",
"release:patch": "pnpm release patch"
},
"devDependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@eslint/js": "^9.39.4",
"@release-it-plugins/lerna-changelog": "^8.0.1",
"@stylistic/eslint-plugin-js": "^4.4.1",
"@stylistic/eslint-plugin-ts": "^4.4.1",
"@tsconfig/node18": "^18.2.6",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"eslint": "9.39.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.3.0",
"lerna-changelog": "^2.2.0",
"prettier": "^3.8.1",
"release-it": "^19.2.4",
"release-it-pnpm": "^4.6.6",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0"
},
"jest": {
"preset": "ts-jest",
"verbose": true,
"clearMocks": true,
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"ts"
],
"testMatch": [
"**/*.test.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**"
]
}
}