-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
48 lines (48 loc) · 1.05 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
{
"name": "passport-custom",
"version": "1.2.0",
"description": "Custom authentication strategy for Passport.",
"keywords": [
"passport",
"custom",
"auth",
"authn",
"authentication"
],
"author": "Mike Bell <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/mbell8903/passport-custom.git"
},
"bugs": {
"url": "http://github.com/mbell8903/passport-custom/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "./lib",
"dependencies": {
"passport-strategy": "1.x.x"
},
"devDependencies": {
"chai": "^2.1.0",
"chai-passport-strategy": "0.1.x",
"mocha": "^2.1.0"
},
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "mocha --reporter spec --require test/bootstrap/node test/*.test.js"
},
"homepage": "https://github.com/mbell8903/passport-custom",
"directories": {
"example": "examples",
"test": "test"
},
"license": "MIT",
"typings": "./lib/index.d.ts"
}