-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.33 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
{
"name": "@criipto/verify-express",
"version": "1.0.3",
"description": "Accept MitID, NemID, Swedish BankID, Norwegian BankID and more logins in your Node.js app using Passport or plain Express.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/criipto/criipto-verify-express.git"
},
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"criipto",
"verify",
"bankid",
"nemid",
"mitid",
"passport",
"express"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/criipto/criipto-verify-express/issues"
},
"homepage": "https://github.com/criipto/criipto-verify-express#readme",
"dependencies": {
"@criipto/oidc": "^1.2.2",
"debug": "^4.3.4",
"jose": "^4.8.3",
"node-fetch": "^2.6.7",
"passport-strategy": "^1.0.0"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/express-session": "^1.17.5",
"@types/node-fetch": "^2.6.2",
"@types/passport-strategy": "^0.2.35",
"@types/supertest": "^2.0.12",
"express": "^4.18.2",
"jest": "^29.3.1",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}