-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
116 lines (116 loc) · 3.76 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "passport",
"version": "7.0.0",
"private": true,
"nyc": {
"all": true,
"include": [
"server/**/*.js",
"config/**/*.js"
]
},
"engines": {
"node": ">=14 <=20"
},
"scripts": {
"start": "NODE_ENV=production node server/app.js",
"test": "npm run test:unit && npm run test:integration && npm run test:behaviour",
"test:unit": "NODE_ENV=test ALLOW_CONFIG_MUTATIONS=true mocha --exit --no-warnings test/*.test.js --timeout 10000",
"test:integration": "NODE_ENV=test mocha --config .mocharc-integration.json --exit --no-warnings test/*.spec.js",
"test:behaviour": "NODE_ENV=test cucumber-js --exit test/features",
"cover": "npm run cover:unit && npm run cover:integration && npm run cover:report",
"cover:unit": "nyc --silent npm run test:unit",
"cover:integration": "nyc --silent --no-clean npm run test:integration",
"cover:report": "nyc report --reporter=text-lcov > coverage.lcov",
"dev": "NODE_ENV=development node server/app.js",
"lint": "eslint 'server/**/*.js' 'test/**/*.js' 'config/**/*.js'",
"generate-coverage": "NODE_ENV=test nyc report --reporter=text-lcov > coverage.lcov",
"prepare": "husky install"
},
"dependencies": {
"@nicokaiser/passport-apple": "^2.0.0",
"@node-saml/passport-saml": "^5.0.0",
"@sokratis/passport-linkedin-oauth2": "^2.1.0",
"base64url": "^3.0.1",
"bluebird": "^3.5.3",
"body-parser": "^1.19.1",
"config": "^3.3.3",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.4",
"csurf": "^1.11.0",
"eslint": "^8.30.0",
"express": "^4.19.2",
"express-prom-bundle": "^6.3.6",
"express-rate-limit": "^5.2.3",
"express-session": "^1.17.3",
"global-agent": "^3.0.0",
"got": "^11.8.6",
"http-cache-semantics": "^4.1.1",
"jose": "^4.15.5",
"jsonwebtoken": "^9.0.0",
"memcached": "^2.2.2",
"memorystore": "^1.6.6",
"morgan": "^1.9.1",
"openid-client": "^5.1.1",
"passport": "^0.6.0",
"passport-dropbox-oauth2": "^1.1.0",
"passport-facebook": "^3.0.0",
"passport-github": "^1.1.0",
"passport-google-oauth2": "^0.2.0",
"passport-twitter": "git+https://github.com/GluuFederation/passport-twitter.git",
"passport-windowslive": "^1.0.2",
"prom-client": "^14.0.1",
"ramda": "^0.27.1",
"redis": "^3.1.2",
"sha1": "^1.1.1",
"stomp-client": "^0.9.0",
"uuid": "^8.3.2",
"winston": "^3.1.0",
"winston-daily-rotate-file": "^4.5.5",
"www-authenticate": "^0.6.2"
},
"description": "Find the docs of this project at: https://gluu.org/docs/gluu-server/authn-guide/passport/",
"main": "server/app.js",
"directories": {
"test": "test"
},
"devDependencies": {
"@cucumber/cucumber": "^7.3.1",
"chai": "^4.3.0",
"chai-files": "^1.4.0",
"chai-http": "^4.3.0",
"codecov": "^3.8.3",
"cz-conventional-changelog": "^3.3.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-chai-friendly": "^0.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-utils": "^3.0.0",
"fakeredis": "^2.0.0",
"git-commit-msg-linter": "^3.1.0",
"husky": "^7.0.4",
"lint-staged": "^11.1.0",
"mocha": "^9.2.2",
"nock": "^13.1.3",
"nyc": "^15.1.0",
"rewire": "^5.0.0",
"sinon": "^12.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GluuFederation/gluu-passport.git"
},
"author": "Christian Eland",
"license": "Apache2",
"bugs": {
"url": "https://github.com/GluuFederation/gluu-passport/issues"
},
"homepage": "https://github.com/GluuFederation/gluu-passport#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}