-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
45 lines (45 loc) · 1016 Bytes
/
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
{
"name": "connect-cas",
"description": "Connect middleware for a node CAS client",
"version": "1.8.1",
"author": "Duncan Wong <[email protected]>",
"license": "MIT",
"keywords": [
"cas",
"central authentication service",
"authentication",
"connect",
"middlware"
],
"directories": {
"lib": "./lib"
},
"engines": {
"node": "*"
},
"scripts": {
"test": "./node_modules/.bin/mocha --reporter list test/*.spec.js"
},
"dependencies": {
"http-status-codes": "^1.0.5",
"lodash": "~2.4.1",
"q": "~1.0.0",
"request": "~2.81.0",
"xml2js": "~0.4.1"
},
"devDependencies": {
"mocha": "~1.9.0",
"should": "~1.2.2",
"connect": "~2.7.6",
"express": "~3.2.0",
"connect-redis": "~1.4.5"
},
"bugs": {
"url": "https://github.com/AceMetrix/connect-cas/issues"
},
"homepage": "https://github.com/AceMetrix/connect-cas",
"repository": {
"type": "git",
"url": "https://github.com/AceMetrix/connect-cas"
}
}