fix changelog
[squeep-indie-auther] / package.json
1 {
2 "name": "@squeep/indie-auther",
3 "version": "1.2.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 "eslint:test": "eslint test",
20 "test": "mocha --recursive"
21 },
22 "pre-commit": [
23 "eslint",
24 "coverage",
25 "coverage-check",
26 "audit"
27 ],
28 "engines": {
29 "node": ">=20"
30 },
31 "repository": {
32 "type": "git",
33 "url": "https://git.squeep.com/squeep-indie-auther/"
34 },
35 "author": "Justin Wind <jwind-indieauther@squeep.com>",
36 "license": "ISC",
37 "dependencies": {
38 "@squeep/amqp-helper": "git+https://git.squeep.com/squeep-amqp-helper#v1.0.1",
39 "@squeep/api-dingus": "^2",
40 "@squeep/authentication-module": "git+https://git.squeep.com/squeep-authentication-module/#v1.5.0",
41 "@squeep/chores": "git+https://git.squeep.com/squeep-chores/#v1.0.2",
42 "@squeep/html-template-helper": "git+https://git.squeep.com/squeep-html-template-helper#v1.6.1",
43 "@squeep/indieauth-helper": "^1.4",
44 "@squeep/logger-json-console": "^3",
45 "@squeep/mystery-box": "^2",
46 "@squeep/roman": "^1",
47 "@squeep/web-linking": "^1",
48 "better-sqlite3": "^11",
49 "pg-promise": "^11",
50 "uuid": "^10"
51 },
52 "devDependencies": {
53 "@squeep/eslint-config": "^1",
54 "@squeep/test-helper": "git+https://git.squeep.com/squeep-test-helper#v2.0.0",
55 "eslint": "^9",
56 "html-validate": "^8",
57 "mocha": "^10",
58 "mocha-steps": "^1",
59 "nyc": "^17",
60 "pre-commit": "^1",
61 "sinon": "^18"
62 }
63 }