-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 936 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
{
"name": "koa-auth-jwt",
"version": "0.0.5",
"description": "Koa auth middleware using JWT",
"main": "lib/koa-auth-jwt.js",
"repository": {
"type": "git",
"url": "git+https://github.com/marc1404/koa-auth-jwt.git"
},
"author": "Marc Vornetran",
"license": "MIT",
"bugs": {
"url": "https://github.com/marc1404/koa-auth-jwt/issues"
},
"homepage": "https://github.com/marc1404/koa-auth-jwt#readme",
"dependencies": {
"jsonwebtoken": "^5.4.0"
},
"devDependencies": {
"istanbul": "^0.4.0",
"mocha": "^2.3.3",
"should": "^7.1.1"
},
"scripts": {
"test": "node --harmony --harmony_arrow_functions node_modules/istanbul/lib/cli.js cover --hook-run-in-context --report lcovonly node_modules/mocha/bin/_mocha"
},
"engines": {
"node": ">= 0.11.16",
"iojs": ">= 1.0.0"
},
"keywords": [
"koa",
"auth",
"middleware",
"jwt",
"token",
"login"
]
}