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