-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 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
49
50
51
{
"name": "connect-wwwhisper",
"description": "A middleware to authenticate and authorize requests via wwwhisper auth backend.",
"version": "0.1.23",
"homepage": "https://github.com/wrr/connect-wwwhisper",
"author": "Jan Wrobel <jan@mixedbit.org>",
"repository": {
"type": "git",
"url": "git://github.com/wrr/connect-wwwhisper.git"
},
"bugs": {
"url": "https://github.com/wrr/connect-wwwhisper/issues"
},
"licenses": [
{
"type": "BSD-2-Clause",
"url": "https://raw.github.com/wrr/connect-wwwhisper/master/COPYING"
}
],
"main": "lib/connect-wwwhisper",
"engines": {
"node": ">= 0.10.0 < 24.0.0"
},
"types": "lib/connect-wwwhisper.d.ts",
"dependencies": {
"@types/connect": "*",
"connect": ">= 2.7.2",
"connect-injector": "0.4.4",
"urijs": ">= 1.10.2",
"url": "*"
},
"devDependencies": {
"grunt": "^1.6.1",
"grunt-contrib-jshint": "*",
"jshint": "^2.13.6",
"mocha": "10.2.0"
},
"scripts": {
"test": "mocha -R list --ui tdd --exit test/"
},
"keywords": [
"connect",
"middleware",
"authentication",
"authorization"
],
"directories": {
"test": "test"
},
"license": "BSD-2-Clause"
}