X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;f=package.json;h=1ffcf9621ff779d17aa9ee617508274ef21a3fbe;hb=b806715f9288323cce7b0ab437ee78b01d26c548;hp=6dac33c3ca5f791168da89f2741663fdb21f2bff;hpb=c932eea878eee54bac69f004545662b0b67fc237;p=websub-hub diff --git a/package.json b/package.json index 6dac33c..1ffcf96 100644 --- a/package.json +++ b/package.json @@ -4,9 +4,11 @@ "description": "A WebSub Hub server implementation.", "main": "server.js", "scripts": { + "audit": "npm audit", "coverage": "nyc npm test", "coverage-check": "nyc check-coverage", - "eslint": "eslint *.js src", + "eslint": "eslint server.js src", + "eslint:test": "eslint test", "test": "mocha --recursive" }, "repository": { @@ -22,41 +24,40 @@ "syndication" ], "engines": { - "node": ">=14" + "node": ">=20" }, "author": "Justin Wind ", "license": "ISC", "pre-commit": [ "eslint", "coverage", - "coverage-check" + "coverage-check", + "audit" ], "dependencies": { - "@squeep/api-dingus": "git+https://git.squeep.com/squeep-api-dingus/#v1.2.9", - "@squeep/authentication-module": "git+https://git.squeep.com/squeep-authentication-module/#v1.3.0", - "@squeep/html-template-helper": "git+https://git.squeep.com/squeep-html-template-helper#v1.4.0", - "@squeep/logger-json-console": "git+https://git.squeep.com/squeep-logger-json-console#v1.0.2", - "@squeep/web-linking": "^1.0.7", - "axios": "^1.4.0", - "feedparser": "^2.2.10", - "htmlparser2": "^9.0.0", - "iconv": "^3.0.1" + "@squeep/api-dingus": "^2", + "@squeep/authentication-module": "git+https://git.squeep.com/squeep-authentication-module/#v1.5.0", + "@squeep/html-template-helper": "git+https://git.squeep.com/squeep-html-template-helper#v1.6.1", + "@squeep/logger-json-console": "^3", + "@squeep/roman": "^1", + "@squeep/web-linking": "^1", + "feedparser": "^2", + "got": "^14", + "htmlparser2": "^9", + "iconv": "^3" }, "optionalDependencies": { - "better-sqlite3": "^8.4.0", - "pg-promise": "^11.5.0" + "better-sqlite3": "^11", + "pg-promise": "^11" }, "devDependencies": { - "eslint": "^8.41.0", - "eslint-plugin-node": "^11.1.0", - "eslint-plugin-promise": "^6.1.1", - "eslint-plugin-security": "^1.7.1", - "eslint-plugin-sonarjs": "^0.19.0", - "html-minifier-lint": "^2.0.0", - "mocha": "^10.2.0", - "mocha-steps": "^1.3.0", - "nyc": "^15.1.0", - "pre-commit": "^1.2.2", - "sinon": "^15.1.0" + "@squeep/eslint-config": "^1", + "eslint": "^9", + "html-validate": "^8", + "mocha": "^10", + "mocha-steps": "^1", + "nyc": "^17", + "pre-commit": "^1", + "sinon": "^18" } }