48 lines
1.0 KiB
JSON
48 lines
1.0 KiB
JSON
|
{
|
||
|
"name": "rocketchat-gitea-hook",
|
||
|
"version": "1.15.0-sporq",
|
||
|
"description": "Rocket.Chat integrate Gitea's notifications via Incoming Webhook",
|
||
|
"repository": "https://git.sporq.de/sporq/rocketchat-gitea-hook",
|
||
|
"license": "MIT",
|
||
|
"private": true,
|
||
|
"main": "./gitea-rocketchat.hooks.js",
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"extends": [
|
||
|
"@samuelmeuli/eslint-config",
|
||
|
"plugin:jsdoc/recommended"
|
||
|
],
|
||
|
"env": {
|
||
|
"node": true,
|
||
|
"jest": true
|
||
|
},
|
||
|
"settings": {
|
||
|
"jsdoc": {
|
||
|
"mode": "typescript"
|
||
|
}
|
||
|
},
|
||
|
"rules": {
|
||
|
"no-await-in-loop": "off",
|
||
|
"no-unused-vars": [
|
||
|
"error",
|
||
|
{
|
||
|
"args": "none",
|
||
|
"varsIgnorePattern": "^_"
|
||
|
}
|
||
|
],
|
||
|
"jsdoc/check-indentation": "error",
|
||
|
"jsdoc/check-syntax": "error",
|
||
|
"jsdoc/newline-after-description": [
|
||
|
"error",
|
||
|
"never"
|
||
|
],
|
||
|
"jsdoc/require-description": "error",
|
||
|
"jsdoc/require-hyphen-before-param-description": "error",
|
||
|
"jsdoc/require-jsdoc": "off"
|
||
|
}
|
||
|
},
|
||
|
"eslintIgnore": [
|
||
|
"img/"
|
||
|
],
|
||
|
"prettier": "@samuelmeuli/prettier-config"
|
||
|
}
|