-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "passport-http-2",
"version": "1.1.1",
"description": "HTTP Basic and Digest authentication strategies for Passport.",
"types": "index.d.ts",
"keywords": [
"passport",
"http",
"basic",
"digest",
"auth",
"authn",
"authentication"
],
"repository": {
"type": "git",
"url": "git://github.com/MatthiasKunnen/passport-http-2.git"
},
"bugs": {
"url": "http://github.com/MatthiasKunnen/passport-http-2/issues"
},
"author": "Matthias Kunnen",
"license": "MIT",
"main": "./lib/index.js",
"dependencies": {
"passport-strategy": "1.x.x"
},
"devDependencies": {
"eslint": "^5.10.0",
"vows": "0.8.x"
},
"scripts": {
"lint": "eslint './lib/**/*.js' './test/**/*.js'",
"test": "NODE_PATH=lib node_modules/.bin/vows test/*-test.js test/**/*-test.js"
},
"files": [
"index.d.ts",
"lib"
],
"engines": {
"node": ">= 8.0.0"
}
}