forked from coursetable/passport-cas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "passport-cas",
"version": "0.1.2",
"description": "CAS authentication strategies for Passport.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"demo": "DEBUG=axios ts-node demo/server.ts",
"compile": "tsc"
},
"repository": "https://github.com/coursetable/passport-cas",
"keywords": [
"passport",
"auth",
"cas"
],
"author": "CourseTable",
"license": "MIT",
"homepage": "https://github.com/coursetable/passport-cas",
"dependencies": {
"@types/node": "^14.14.14",
"@types/passport": "^1.0.4",
"@types/passport-strategy": "^0.2.35",
"@types/underscore": "^1.10.24",
"@types/uuid": "^8.3.0",
"@types/verror": "^1.10.4",
"@types/xml2js": "^0.4.7",
"axios": "^0.21.0",
"passport-strategy": "^1.0.0",
"underscore": "^1.12.0",
"uuid": "^8.3.2",
"verror": "^1.10.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/express-session": "^1.17.3",
"@types/morgan": "^1.9.2",
"axios-debug-log": "^0.8.2",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}