forked from koajs/jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 970 Bytes
/
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
{
"name": "koa-jwt",
"version": "0.0.3",
"description": "Koa JWT authentication middleware.",
"keywords": [
"auth",
"authn",
"authentication",
"authz",
"authorization",
"http",
"jwt",
"json",
"middleware",
"token",
"oauth",
"koa"
],
"repository": {
"type": "git",
"url": "git://github.com/stiang/koa-jwt.git"
},
"bugs": {
"url": "http://github.com/stiang/koa-jwt/issues"
},
"author": {
"name": "Stian Grytøyr",
"email": "[email protected]",
"url": "http://stian.grytoyr.net/"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "./lib",
"dependencies": {
"jsonwebtoken": "~0.1.0",
"thunkify": "0.0.x"
},
"devDependencies": {
"koa": "koajs/koa",
"mocha": "~1.12.0",
"supertest": "0.9.x"
},
"engines": {
"node": ">= 0.11.9"
},
"scripts": {
"test": "make test"
}
}