-
Notifications
You must be signed in to change notification settings - Fork 120
/
package.json
130 lines (130 loc) · 2.74 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "koa-jwt",
"version": "4.0.3",
"description": "Koa middleware for validating JSON Web Tokens",
"main": "./lib",
"types": "types/index.d.ts",
"keywords": [
"auth",
"authn",
"authentication",
"authz",
"authorization",
"http",
"jwt",
"json",
"middleware",
"token",
"oauth",
"permissions",
"koa"
],
"repository": {
"type": "git",
"url": "git://github.com/koajs/jwt.git"
},
"license": "MIT",
"authors": [
{
"name": "Stian Grytøyr",
"email": "[email protected]",
"url": "http://stian.grytoyr.net/"
},
{
"name": "Scott Donnelly",
"url": "http://scott.donnel.ly/"
}
],
"contributors": [
{
"name": "Jesús Rodríguez",
"email": "[email protected]",
"url": "http://angular-tips.com/"
},
{
"name": "Teoman Soygul",
"url": "http://soygul.com"
},
{
"name": "Charlike Mike Reagent",
"email": "[email protected]",
"url": "https://tunnckoCore.com"
},
{
"name": "Getulio Romão Campos Junior",
"email": "[email protected]",
"url": "https://github.com/getuliojr"
},
{
"name": "Cesar Andreu",
"email": "[email protected]",
"url": "https://cesarandreu.com"
},
{
"name": "Michael Westphal",
"url": "https://github.com/michaelwestphal"
},
{
"name": "Jackong",
"url": "https://github.com/Jackong"
},
{
"name": "Daniel Kennedy",
"url": "https://github.com/danwkennedy"
},
{
"name": "Nicolás Fantone",
"email": "[email protected]",
"url": "https://github.com/nfantone"
},
{
"name": "Scott Cooper",
"email": "[email protected]",
"url": "https://github.com/scttcper"
},
{
"name": "Johannes Ewald",
"email": "[email protected]",
"url": "https://github.com/jhnns"
},
{
"name": "Maxim Vorobjov",
"url": "https://github.com/dunnock"
},
{
"name": "Imed Jaberi",
"email": "[email protected]",
"url": "https://github.com/3imed-jaberi"
}
],
"nyc": {
"reporter": [
"lcov",
"text-summary"
],
"report-dir": "./coverage"
},
"dependencies": {
"jsonwebtoken": "^9.0.0",
"koa-unless": "^1.0.7",
"p-any": "^2.1.0"
},
"devDependencies": {
"chai": "latest",
"koa": "^2.11.0",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"supertest": "^4.0.2"
},
"engines": {
"node": ">= 8"
},
"scripts": {
"test": "mocha --reporter spec test/test.js --exit",
"test-cov": "nyc npm run test"
},
"bugs": {
"url": "https://github.com/koajs/jwt/issues"
},
"homepage": "https://github.com/koajs/jwt"
}