-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.18 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
{
"name": "http-cas-client",
"version": "0.4.3",
"description": "A complete implement of CAS Client middleware for Node.js, support CAS 1.0, 2.0+, 3.0+ protocol.",
"main": "index.js",
"directories": {
"test": "test"
},
"typings": "index.d.ts",
"dependencies": {
"axios": "^0.21.1",
"cookie": "^0.3.1",
"debug": "^4.3.1",
"lru-cache": "^5.1.1",
"qs": "^6.9.4",
"xml2js": "^0.5.0"
},
"devDependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-session": "^5.13.1",
"mocha": "^10.2.0"
},
"scripts": {
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lemonce/cas-client.git"
},
"keywords": [
"cas",
"node",
"client",
"apereo",
"CAS3",
"CAS2",
"cas-client",
"koa",
"http",
"express"
],
"author": "ChaosLee",
"license": "MIT",
"bugs": {
"url": "https://github.com/lemonce/cas-client/issues"
},
"files": [
"src",
"wrap",
"index.js",
"index.d.ts"
],
"homepage": "https://github.com/lemonce/cas-client#readme"
}