new package.json stuff
Some checks failed
Lint / Run linters (push) Failing after 27s

This commit is contained in:
Marius Alwan Meyer 2023-05-01 22:44:51 +00:00
parent 0b2620a0ab
commit 4da9ea5179
4 changed files with 1388 additions and 2 deletions

14
.eslintrc.json Normal file
View File

@ -0,0 +1,14 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": "eslint:recommended",
"overrides": [
],
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {
}
}

View File

@ -27,9 +27,8 @@ jobs:
with: with:
node-version: 14 node-version: 14
# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies - name: Install Node.js dependencies
run: npm i eslint eslint-plugin-jsdoc prettier run: npm ci
- name: Run linters - name: Run linters
uses: https://github.com/wearerequired/lint-action@v2 uses: https://github.com/wearerequired/lint-action@v2

1248
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

125
package.json Normal file
View File

@ -0,0 +1,125 @@
{
"name": "rocketchat-gitea-hook",
"version": "1.15.0",
"description": "Rocket.Chat integrate Gitea's notifications via Incoming Webhook",
"main": "gitea-rocketchat.hooks.js",
"dependencies": {
"acorn": "^8.8.2",
"acorn-jsx": "^5.3.2",
"ajv": "^6.12.6",
"ansi-regex": "^5.0.1",
"ansi-styles": "^4.3.0",
"are-docs-informative": "^0.0.2",
"argparse": "^2.0.1",
"balanced-match": "^1.0.2",
"brace-expansion": "^1.1.11",
"callsites": "^3.1.0",
"chalk": "^4.1.2",
"color-convert": "^2.0.1",
"color-name": "^1.1.4",
"comment-parser": "^1.3.1",
"concat-map": "^0.0.1",
"cross-spawn": "^7.0.3",
"debug": "^4.3.4",
"deep-is": "^0.1.4",
"doctrine": "^3.0.0",
"escape-string-regexp": "^4.0.0",
"eslint-plugin-jsdoc": "^43.1.1",
"eslint-scope": "^7.2.0",
"eslint-visitor-keys": "^3.4.0",
"espree": "^9.5.1",
"esquery": "^1.5.0",
"esrecurse": "^4.3.0",
"estraverse": "^5.3.0",
"esutils": "^2.0.3",
"fast-deep-equal": "^3.1.3",
"fast-json-stable-stringify": "^2.1.0",
"fast-levenshtein": "^2.0.6",
"fastq": "^1.15.0",
"file-entry-cache": "^6.0.1",
"find-up": "^5.0.0",
"flat-cache": "^3.0.4",
"flatted": "^3.2.7",
"fs.realpath": "^1.0.0",
"glob": "^7.2.3",
"glob-parent": "^6.0.2",
"globals": "^13.20.0",
"grapheme-splitter": "^1.0.4",
"has-flag": "^4.0.0",
"ignore": "^5.2.4",
"import-fresh": "^3.3.0",
"imurmurhash": "^0.1.4",
"inflight": "^1.0.6",
"inherits": "^2.0.4",
"is-extglob": "^2.1.1",
"is-glob": "^4.0.3",
"is-path-inside": "^3.0.3",
"isexe": "^2.0.0",
"js-sdsl": "^4.4.0",
"js-yaml": "^4.1.0",
"jsdoc-type-pratt-parser": "^4.0.0",
"json-schema-traverse": "^0.4.1",
"json-stable-stringify-without-jsonify": "^1.0.1",
"levn": "^0.4.1",
"locate-path": "^6.0.0",
"lodash.merge": "^4.6.2",
"lru-cache": "^6.0.0",
"minimatch": "^3.1.2",
"ms": "^2.1.2",
"natural-compare": "^1.4.0",
"once": "^1.4.0",
"optionator": "^0.9.1",
"p-limit": "^3.1.0",
"p-locate": "^5.0.0",
"parent-module": "^1.0.1",
"path-exists": "^4.0.0",
"path-is-absolute": "^1.0.1",
"path-key": "^3.1.1",
"prelude-ls": "^1.2.1",
"prettier": "^2.8.8",
"punycode": "^2.3.0",
"queue-microtask": "^1.2.3",
"resolve-from": "^4.0.0",
"reusify": "^1.0.4",
"rimraf": "^3.0.2",
"run-parallel": "^1.2.0",
"semver": "^7.5.0",
"shebang-command": "^2.0.0",
"shebang-regex": "^3.0.0",
"spdx-exceptions": "^2.3.0",
"spdx-expression-parse": "^3.0.1",
"spdx-license-ids": "^3.0.13",
"strip-ansi": "^6.0.1",
"strip-json-comments": "^3.1.1",
"supports-color": "^7.2.0",
"text-table": "^0.2.0",
"type-check": "^0.4.0",
"type-fest": "^0.20.2",
"uri-js": "^4.4.1",
"which": "^2.0.2",
"word-wrap": "^1.2.3",
"wrappy": "^1.0.2",
"yallist": "^4.0.0",
"yocto-queue": "^0.1.0"
},
"scripts": {
"test": "npm test"
},
"repository": {
"type": "git",
"url": "git@git.sporq.de:sporq/rocketchat-gitea-hook.git"
},
"keywords": [
"notifications",
"webhooks",
"webhook",
"gitea",
"rocketchat",
"incoming-webhooks"
],
"author": "Austin Su",
"license": "MIT",
"devDependencies": {
"eslint": "^8.39.0"
}
}