-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.78 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.78 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
85
86
87
{
"name": "@kie/build-chain-action",
"version": "3.5.10",
"description": "Library to execute build commands based on github projects dependencies.",
"main": "dist/index.js",
"author": "",
"license": "ISC",
"private": false,
"bin": {
"build-chain": "build/index.js"
},
"scripts": {
"build": "run-p build:*",
"build:cli": "ncc build -o build --minify src/bin/entry-point/cli.ts",
"build:action": "ncc build -o dist --minify src/bin/entry-point/github-action.ts",
"dev:build": "tsc && tsc-alias",
"test": "jest unitary/",
"pretest:e2e": "ncc build -o dist-e2e --minify src/bin/entry-point/github-action.ts",
"test:e2e": "jest e2e/",
"posttest:e2e": "rm -rf dist-e2e",
"pretest:e2e-regression-action": "npm run pretest:e2e",
"test:e2e-regression-action": "jest --testTimeout=900000 e2e-regression/github-action/",
"posttest:e2e-regression-action": "rm -rf dist-e2e",
"test:e2e-regression-cli": "jest --testTimeout=900000 e2e-regression/cli/",
"test:e2e-regression": "run-p test:e2e-regression-*",
"test:report": "npm test -- --coverage --testResultsProcessor=jest-sonar-reporter",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kiegroup/github-action-build-chain.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/kiegroup/github-action-build-chain/issues"
},
"homepage": "https://github.com/kiegroup/github-action-build-chain#readme",
"devDependencies": {
"@kie/act-js": "2.0.6",
"@kie/mock-github": "1.0.3",
"@types/fs-extra": "9.0.13",
"@types/jest": "29.5.14",
"@types/node": "18.16.3",
"@typescript-eslint/eslint-plugin": "5.28.0",
"@typescript-eslint/parser": "5.28.0",
"@vercel/ncc": "0.38.3",
"eslint": "8.17.0",
"husky": "8.0.1",
"jest": "28.1.3",
"jest-sonar-reporter": "2.0.0",
"nock": "13.2.7",
"npm-run-all": "4.1.5",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"tsc-alias": "1.8.2",
"typescript": "4.7.3"
},
"dependencies": {
"@actions/artifact": "1.1.0",
"@actions/core": "1.9.1",
"@actions/exec": "1.1.1",
"@actions/glob": "0.3.0",
"@kie/build-chain-configuration-reader": "3.1.6",
"@octokit/plugin-throttling": "5.0.1",
"@octokit/request-error": "2.1.0",
"@octokit/rest": "18.12.0",
"@octokit/types": "6.41.0",
"axios": "1.13.6",
"commander": "9.3.0",
"fs-extra": "10.1.0",
"http-proxy-agent": "7.0.0",
"ms-typescript": "2.0.0",
"reflect-metadata": "0.1.13",
"simple-git": "3.33.0",
"typedi": "0.10.0"
},
"engines": {
"node": ">= 14.19.3"
},
"overrides": {
"axios": "1.13.6",
"path-to-regexp": "0.1.13",
"qs": "6.14.2"
}
}