forked from etsangsplk/auth0-cas-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.16 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
{
"name": "auth0-cas-server",
"version": "1.2.0",
"description": "A simple CAS server that uses Auth0 as the backing IDP",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "mocha"
},
"engines": {
"node": "12.14.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/auth0-samples/auth0-cas-server.git"
},
"keywords": [
"cas",
"auth0",
"sso"
],
"author": "Auth0",
"license": "MIT",
"bugs": {
"url": "https://github.com/auth0-samples/auth0-cas-server/issues"
},
"homepage": "https://github.com/auth0-samples/auth0-cas-server#readme",
"dependencies": {
"client-sessions": "^0.8.0",
"cookie-parser": "^1.4.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.6.0",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"node-stringify": "0.2.1",
"querystring": "^0.2.0",
"request": "^2.88.0",
"uuid": "^3.3.3",
"xmlbuilder": "^10.1.1"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.0.0",
"nock": "^11.7.2",
"supertest": "^4.0.2",
"xmldom": "^0.2.1",
"xpath": "0.0.27"
}
}