update dependencies and devDependencies, address lint issues
[squeep-indie-auther] / package.json
1 {
2 "name": "@squeep/indie-auther",
3 "version": "1.1.0",
4 "description": "A stand-alone IndieAuth identity-provider service, for most of your IndieAuth endpoint needs.",
5 "keywords": [
6 "IdP",
7 "Identity Provider",
8 "IndieAuth",
9 "IndieWeb",
10 "OAuth2",
11 "Authentication"
12 ],
13 "main": "server.js",
14 "scripts": {
15 "audit": "npm audit",
16 "coverage": "nyc npm test",
17 "coverage-check": "nyc check-coverage",
18 "eslint": "eslint server.js src",
19 "test": "mocha --recursive"
20 },
21 "pre-commit": [
22 "audit",
23 "eslint",
24 "coverage",
25 "coverage-check"
26 ],
27 "engines": {
28 "node": ">=16.9"
29 },
30 "repository": {
31 "type": "git",
32 "url": "https://git.squeep.com/squeep-indie-auther/"
33 },
34 "author": "Justin Wind <jwind-indieauther@squeep.com>",
35 "license": "ISC",
36 "dependencies": {
37 "@squeep/amqp-helper": "git+https://git.squeep.com/squeep-amqp-helper#v1.0.0",
38 "@squeep/api-dingus": "^2",
39 "@squeep/authentication-module": "git+https://git.squeep.com/squeep-authentication-module/#v1.5.0",
40 "@squeep/chores": "git+https://git.squeep.com/squeep-chores/#v1.0.1",
41 "@squeep/html-template-helper": "git+https://git.squeep.com/squeep-html-template-helper#v1.6.1",
42 "@squeep/indieauth-helper": "^1.4",
43 "@squeep/logger-json-console": "^3",
44 "@squeep/mystery-box": "^2",
45 "@squeep/roman": "^1",
46 "@squeep/web-linking": "^1",
47 "better-sqlite3": "^9",
48 "pg-promise": "^11",
49 "uuid": "^9"
50 },
51 "devDependencies": {
52 "@squeep/eslint-config": "^1",
53 "@squeep/test-helper": "git+https://git.squeep.com/squeep-test-helper#v1.0.1",
54 "eslint": "^9",
55 "html-validate": "^8",
56 "mocha": "^10",
57 "mocha-steps": "^1",
58 "nyc": "^15",
59 "pre-commit": "^1",
60 "sinon": "^17"
61 }
62 }