bump package version to 1.5.0
[squeep-authentication-module] / package.json
1 {
2 "name": "@squeep/authentication-module",
3 "version": "1.5.0",
4 "description": "Wrangles authenticated sessions, endpoints, and resources; intended for use in Squeep Framework Applications.",
5 "main": "index.js",
6 "scripts": {
7 "audit": "npm audit",
8 "coverage": "nyc npm test",
9 "coverage-check": "nyc check-coverage",
10 "eslint": "eslint index.js lib",
11 "test": "mocha --recursive"
12 },
13 "files": [
14 "lib/**"
15 ],
16 "repository": {
17 "type": "git",
18 "url": "https://git.squeep.com/squeep-authentication-module/"
19 },
20 "keywords": [
21 "authentication",
22 "argon2",
23 "IndieAuth",
24 "pam"
25 ],
26 "engines": {
27 "node": ">=18"
28 },
29 "author": "Justin Wind <jwind-npm@squeep.com>",
30 "license": "ISC",
31 "pre-commit": [
32 "audit",
33 "eslint",
34 "coverage",
35 "coverage-check"
36 ],
37 "dependencies": {
38 "@squeep/api-dingus": "^2",
39 "@squeep/html-template-helper": "git+https://git.squeep.com/squeep-html-template-helper#v1.6.1",
40 "@squeep/indieauth-helper": "^1",
41 "@squeep/mystery-box": "^2",
42 "@squeep/totp": "^1",
43 "uuid": "^9"
44 },
45 "optionalDependencies": {
46 "argon2": "^0.40.1",
47 "node-linux-pam": "^0.2.1"
48 },
49 "devDependencies": {
50 "@squeep/eslint-config": "^1",
51 "eslint": "^9",
52 "html-validate": "^8",
53 "mocha": "^10",
54 "nyc": "^15",
55 "pre-commit": "^1",
56 "sinon": "^17"
57 }
58 }