* [HUDI-985] Introduce rerun ci bot * Implement bot using github-script * trigger rebuild
37 lines
1006 B
JSON
37 lines
1006 B
JSON
{
|
|
"name": "github_action_ci_bot",
|
|
"version": "1.1.1",
|
|
"description": "CI Bot for GitHub Actions",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"lint": "eslint 'src/**.js' 'tests/**.js' --fix",
|
|
"test": "eslint 'src/**.js' 'tests/**.js' && jest --coverage",
|
|
"build": "ncc build src/action.js"
|
|
},
|
|
"author": "lamber-ken",
|
|
"license": "Apache LICENSE 2.0",
|
|
"homepage": "https://github.com/apache/hudi",
|
|
"bugs": {
|
|
"url": "https://github.com/apache/hudi/issues"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.4",
|
|
"@actions/github": "^2.2.0",
|
|
"@actions/io": "^1.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^25.1.4",
|
|
"@typescript-eslint/eslint-plugin": "^2.33.0",
|
|
"@typescript-eslint/parser": "^2.33.0",
|
|
"@zeit/ncc": "^0.22.0",
|
|
"eslint": "^7.0.0",
|
|
"eslint-config-prettier": "^6.11.0",
|
|
"husky": "^4.2.5",
|
|
"jest": "^25.1.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^2.0.5",
|
|
"ts-jest": "^25.2.1",
|
|
"typescript": "^3.8.3"
|
|
}
|
|
}
|