forked from vanceric/pcf-sso-express-middleware
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.4 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
{
"name": "pcf-express-sso",
"version": "0.1.7",
"description": "Express JS/TS middleware for Pivotal Cloud Foundry Single Sign On",
"main": "lib/index",
"types": "lib/index",
"scripts": {
"build": "tsc",
"test": "ts-mocha ./src/test/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haplesshero13/pcf-express-sso.git"
},
"keywords": [
"Pivotal Cloud Foundry",
"PCF",
"Single Sign-On",
"SSO",
"Oauth",
"Oauth2",
"Authentication",
"Express",
"Middleware",
"Cloud Foundry"
],
"author": "haplesshero13",
"license": "MIT",
"bugs": {
"url": "https://github.com/haplesshero13/pcf-express-sso/issues"
},
"homepage": "https://github.com/haplesshero13/pcf-express-sso#readme",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/express": "^4.16.0",
"@types/express-session": "^1.15.10",
"@types/mocha": "^5.2.5",
"@types/node-fetch": "^2.1.2",
"@types/request": "^2.47.1",
"@types/simple-oauth2": "^2.2.1",
"@types/sinon": "^5.0.1",
"@types/sinon-chai": "^3.2.0",
"chai": "^4.1.2",
"express": "^4.16.3",
"mocha": "^4.0.1",
"sinon": "^4.1.3",
"sinon-chai": "^2.14.0",
"ts-mocha": "^2.0.0",
"ts-sinon": "^1.0.12",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
},
"dependencies": {
"node-fetch": "^2.2.0",
"simple-oauth2": "^2.2.1"
}
}