mirror of
https://github.com/kiegroup/git-backporting.git
synced 2025-07-03 08:03:48 +00:00
project setup
This commit is contained in:
commit
05d156a5b0
39 changed files with 14823 additions and 0 deletions
70
package.json
Normal file
70
package.json
Normal file
|
@ -0,0 +1,70 @@
|
|||
{
|
||||
"name": "@lampajr/backporting",
|
||||
"version": "0.0.1",
|
||||
"description": "Tool to execute automatic git backporting.",
|
||||
"author": "",
|
||||
"license": "MIT",
|
||||
"private": false,
|
||||
"main": "./build/src/bin/main.js",
|
||||
"bin": {
|
||||
"backporting": "./build/src/bin/main.js"
|
||||
},
|
||||
"files": [
|
||||
"build/"
|
||||
],
|
||||
"scripts": {
|
||||
"prepare": "husky install",
|
||||
"clean": "rm -rf ./build",
|
||||
"compile": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
|
||||
"build": "npm run clean && npm run compile",
|
||||
"package": "ncc build --source-map --license licenses.txt",
|
||||
"test": "jest",
|
||||
"test:report": "npm test -- --coverage --testResultsProcessor=jest-sonar-reporter",
|
||||
"lint": "eslint . --ext .ts",
|
||||
"lint:fix": "npm run lint -- --fix",
|
||||
"ts-node": "ts-node"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/lampajr/backporting.git"
|
||||
},
|
||||
"keywords": [
|
||||
"backporting",
|
||||
"pull-requests",
|
||||
"github-action",
|
||||
"cherry-pick"
|
||||
],
|
||||
"bugs": {
|
||||
"url": "https://github.com/lampajr/backporting/issues"
|
||||
},
|
||||
"homepage": "https://github.com/lampajr/backporting#readme",
|
||||
"devDependencies": {
|
||||
"@kie/mock-github": "^0.1.1",
|
||||
"@types/fs-extra": "^9.0.13",
|
||||
"@types/jest": "^28.1.8",
|
||||
"@types/node": "^17.0.41",
|
||||
"@typescript-eslint/eslint-plugin": "^5.45.1",
|
||||
"@typescript-eslint/parser": "^5.45.1",
|
||||
"eslint": "^8.29.0",
|
||||
"husky": "^8.0.2",
|
||||
"jest": "^29.3.1",
|
||||
"jest-sonar-reporter": "^2.0.0",
|
||||
"ts-jest": "^29.0.3",
|
||||
"ts-node": "^10.8.1",
|
||||
"tsc-alias": "^1.7.1",
|
||||
"tsconfig-paths": "^4.1.0",
|
||||
"typescript": "^4.9.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"@actions/artifact": "^1.1.0",
|
||||
"@actions/core": "^1.8.2",
|
||||
"@actions/exec": "^1.1.1",
|
||||
"@actions/glob": "^0.3.0",
|
||||
"@octokit/rest": "^19.0.5",
|
||||
"@octokit/types": "^8.0.0",
|
||||
"@octokit/webhooks-types": "^6.7.0",
|
||||
"commander": "^9.3.0",
|
||||
"fs-extra": "^10.1.0",
|
||||
"simple-git": "^3.15.1"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue