54 lines
1.1 KiB
JSON
54 lines
1.1 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": [
|
|
"node_modules/",
|
|
"img/"
|
|
],
|
|
"prettier": "@samuelmeuli/prettier-config",
|
|
"dependencies": {
|
|
"eslint": "^8.39.0",
|
|
"prettier": "^2.8.8"
|
|
}
|
|
}
|