-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.86 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
64
65
66
67
68
69
70
71
72
73
{
"name": "@affinidi/passport-affinidi",
"version": "1.1.0",
"description": "Affinidi OIDC Provider using passport and open-connect",
"author": "affinidi.com",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"keywords": [
"passport",
"affinidi",
"affinidi-login",
"affinidi-react-auth",
"auth",
"openid-connect",
"authentication",
"identity",
"OIDC",
"OID4VP"
],
"repository": {
"type": "git",
"url": "git+https://github.com/affinidi/passport-affinidi.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"express-session": "^1.17.3",
"openid-client": "^5.5.0",
"passport": "^0.6.0",
"tslib": "^2.5.3"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.1",
"@semantic-release/npm": "^11.0.0",
"@semantic-release/release-notes-generator": "^12.0.0",
"@types/express-session": "^1.17.8",
"@types/passport": "^1.0.13",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^5.0.0",
"make-node": "0.4.6",
"prettier": "^3.0.3",
"semantic-release": "^21.1.2",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">= 0.4.0"
},
"directories": {
"lib": "dist"
}
}