-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
82 lines (82 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
{
"name": "@kie/build-chain-action",
"version": "3.5.6",
"description": "Library to execute 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": "^28.1.1",
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.17.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"jest-sonar-reporter": "^2.0.0",
"nock": "^13.2.7",
"npm-run-all": "^4.1.5",
"ts-jest": "^28.0.4",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.2",
"typescript": "^4.7.3"
},
"dependencies": {
"@actions/artifact": "^1.1.0",
"@actions/core": "^1.8.2",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.3.0",
"@kie/build-chain-configuration-reader": "^3.1.4",
"@octokit/plugin-throttling": "^5.0.1",
"@octokit/request-error": "^2.1.0",
"@octokit/rest": "^18.12.0",
"@octokit/types": "^6.39.0",
"axios": "^1.4.0",
"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.7.1",
"typedi": "^0.10.0"
},
"engines": {
"node": ">= 14.19.3"
}
}