-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
97 lines (97 loc) · 2.71 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
{
"name": "github-actions",
"description": "Collection of Github actions",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/gradle/develocity-actions.git"
},
"keywords": [
"actions",
"maven"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"format:check": "prettier --check */src/**/*.ts",
"format:write": "prettier --write */src/**/*.ts",
"format:test": "prettier --write **/__tests__/*.ts **/__tests__/**/*.ts",
"lint": "eslint */src/**/*.ts",
"package-maven-capture-extension": "mvn clean package -f maven-build-scan-capture-extension/pom.xml",
"package-maven-setup-main": "ncc build setup-maven/src/main.ts --out dist/setup-maven/main",
"package-maven-setup-post": "ncc build setup-maven/src/post.ts --out dist/setup-maven/post",
"package-maven-publish": "ncc build maven-publish-build-scan/src/main.ts --out dist/maven-publish-build-scan",
"check": "npm-run-all --parallel format:write format:test lint",
"package": "npm-run-all --parallel package-maven-*",
"build": "npm run check && npm run package",
"test": "jest",
"all": "npm run build && npm run test"
},
"license": "MIT",
"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/**"
]
},
"dependencies": {
"@actions/artifact": "^2.1.11",
"@actions/core": "^1.11.1",
"@actions/github": "6.0.0",
"@actions/glob": "0.5.0",
"@actions/tool-cache": "^2.0.1",
"fast-xml-parser": "^4.5.0",
"properties-reader": "^2.2.0",
"typed-rest-client": "^2.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.9.3",
"@types/properties-reader": "^2.1.1",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@vercel/ncc": "^0.38.3",
"eslint": "^8.51.0",
"eslint-plugin-github": "^5.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"nock": "^13.5.6",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}