X-Git-Url: http://git.squeep.com/?p=squeep-authentication-module;a=blobdiff_plain;f=package.json;h=e54cc50cb4b04d5fb79093a39ccf8ce98d305e96;hp=fa39a8d4e15f0015657618c4793e4fcc5373040a;hb=HEAD;hpb=dd173e6b450cbba8100883514610c9fde83d050a diff --git a/package.json b/package.json index fa39a8d..30cb4b1 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,18 @@ { "name": "@squeep/authentication-module", - "version": "1.0.0", - "description": "Wrangles authenticated sessions; intended for use in Squeep Framework Applications.", + "version": "1.5.0", + "description": "Wrangles authenticated sessions, endpoints, and resources; intended for use in Squeep Framework Applications.", "main": "index.js", "scripts": { + "audit": "npm audit", "coverage": "nyc npm test", "coverage-check": "nyc check-coverage", - "eslint": "eslint *.js lib", + "eslint": "eslint index.js lib", "test": "mocha --recursive" }, + "files": [ + "lib/**" + ], "repository": { "type": "git", "url": "https://git.squeep.com/squeep-authentication-module/" @@ -20,34 +24,35 @@ "pam" ], "engines": { - "node": ">=12.9" + "node": ">=18" }, "author": "Justin Wind ", "license": "ISC", "pre-commit": [ + "audit", "eslint", "coverage", "coverage-check" ], "dependencies": { - "@squeep/api-dingus": "git+https://git.squeep.com/squeep-api-dingus/#v1.2.2", - "@squeep/html-template-helper": "git+https://git.squeep.com/squeep-html-template-helper#v1.0.0", - "@squeep/indieauth-helper": "git+https://git.squeep.com/squeep-indieauth-helper/#v1.0.0", - "@squeep/mystery-box": "git+https://git.squeep.com/squeep-mystery-box/#v1.0.1" + "@squeep/api-dingus": "^2", + "@squeep/html-template-helper": "git+https://git.squeep.com/squeep-html-template-helper#v1.6.1", + "@squeep/indieauth-helper": "^1", + "@squeep/mystery-box": "^2", + "@squeep/totp": "^1", + "uuid": "^9" }, "optionalDependencies": { - "argon2": "^0.28.2", + "argon2": "^0.40.1", "node-linux-pam": "^0.2.1" }, "devDependencies": { - "eslint": "^8.2.0", - "eslint-plugin-node": "^11.1.0", - "eslint-plugin-security": "^1.4.0", - "eslint-plugin-sonarjs": "^0.10.0", - "html-minifier-lint": "^2.0.0", - "mocha": "^9.1.3", - "nyc": "^15.1.0", - "pre-commit": "^1.2.2", - "sinon": "^12.0.1" + "@squeep/eslint-config": "^1", + "eslint": "^9", + "html-validate": "^8", + "mocha": "^10", + "nyc": "^15", + "pre-commit": "^1", + "sinon": "^17" } }