-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
41 lines (41 loc) · 921 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
{
"name": "passport-client-cert",
"version": "2.1.0",
"description": "Passport.js strategy for TLS client certificate authentication",
"main": "src",
"typings": "src/index.d.ts",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/ripjar/passport-client-cert"
},
"keywords": [
"pki",
"passport",
"ssl",
"tls",
"certificate",
"cert",
"authentication"
],
"author": "Joe Whitfield-Seed",
"license": "MIT",
"bugs": {
"url": "https://github.com/ripjar/passport-client-cert/issues"
},
"homepage": "https://github.com/ripjar/passport-client-cert",
"dependencies": {
"passport-strategy": "^1.0.0"
},
"devDependencies": {
"@types/express": "^4.0.36",
"chai": "^3.3.0",
"colors": "^1.1.2",
"connect": "^3.4.1",
"mocha": "^2.3.3",
"passport": "^0.3.2",
"request": "^2.69.0"
}
}