forked from rojo2/passport-cookie
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "passport-cookie",
"version": "1.0.4",
"keywords": [
"passport",
"auth",
"authn",
"authentication",
"token",
"cookie"
],
"repository": {
"type": "git",
"url": "git://github.com/rojo2/passport-cookie.git"
},
"bugs": {
"url": "http://github.com/rojo2.com/passport-cookie/issues"
},
"description": "Cookie authentication strategy for Passport",
"main": "index.js",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"coveralls": "istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm ./coverage/lcov.info",
"cover": "istanbul cover node_modules/.bin/_mocha -- -- -u exports --report html test/**/*",
"test": "mocha"
},
"author": "ROJO 2 <[email protected]> (http://rojo2.com)",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"chai-passport-strategy": "^1.0.0",
"coveralls": "^2.11.14",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"mocha-lcov-reporter": "^1.2.0"
},
"dependencies": {
"passport-strategy": "^1.0.0"
}
}