-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
45 lines (45 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
44
45
{
"name": "express-bearer-token",
"description": "Bearer token middleware for express.",
"version": "3.0.0",
"homepage": "https://github.com/tkellen/node-express-bearer-token",
"authors": [
"Tyler Kellen <[email protected]>",
"Thomas Boutell <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/tkellen/node-express-bearer-token.git"
},
"bugs": {
"url": "https://github.com/tkellen/node-express-bearer-token/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/tkellen/node-express-bearer-token/blob/master/LICENSE"
}
],
"keywords": [
"bearer token",
"bearer token middleware",
"express token",
"authorization bearer"
],
"main": "index.js",
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"test": "mocha -R spec test"
},
"devDependencies": {
"chai": "^4.2.0",
"cookie-signature": "^1.1.0",
"mocha": "^10.8.2"
},
"dependencies": {
"cookie": "^1.0.1",
"cookie-parser": "^1.4.4"
}
}