-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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
{
"name": "auth0-cas-server",
"version": "1.1.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": "4.4.5"
},
"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.7.0",
"cookie-parser": "^1.4.3",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"jsonwebtoken": "^7.1.9",
"jwks-rsa": "^1.1.1",
"moment": "^2.17.0",
"morgan": "^1.7.0",
"node-stringify": "0.0.19",
"querystring": "^0.2.0",
"request": "^2.79.0",
"uuid": "^3.0.1",
"xmlbuilder": "^8.2.2"
},
"devDependencies": {
"auth0-extension-express-tools": "^1.0.1",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"nock": "^9.0.2",
"supertest": "^2.0.1",
"xmldom": "^0.1.27",
"xpath": "0.0.23"
}
}