-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
47 lines (47 loc) · 1018 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
42
43
44
45
46
47
{
"name": "passport-publickey",
"version": "1.0.4",
"description": "Public key authentication strategy for Passport.",
"keywords": [
"passport",
"rsa",
"sha256",
"auth",
"authn",
"authentication",
"publickey"
],
"author": {
"name": "Tim Park",
"email": "[email protected]",
"url": "http://timpark.io/"
},
"repository": {
"type": "git",
"url": "git://github.com/timfpark/passport-publickey.git"
},
"bugs": {
"url": "http://github.com/timfpark/passport-publickey/issues"
},
"licenses": [
{
"type": "Apache 2",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"main": "./lib",
"dependencies": {
"passport-strategy": "1.x.x"
},
"devDependencies": {
"mocha": "1.x.x",
"chai": "1.x.x",
"chai-passport-strategy": "0.1.x"
},
"engines": {
"node": ">= 0.4.0"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js"
}
}