forked from koajs/jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.13 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
{
"name": "koa-jwt",
"version": "3.3.0",
"description": "Koa JWT authentication middleware.",
"types": "types/index.d.ts",
"keywords": [
"auth",
"authn",
"authentication",
"authz",
"authorization",
"http",
"jwt",
"json",
"middleware",
"token",
"oauth",
"koa"
],
"repository": {
"type": "git",
"url": "git://github.com/koajs/jwt.git"
},
"bugs": {
"url": "https://github.com/koajs/jwt/issues"
},
"homepage": "https://github.com/koajs/jwt",
"author": {
"name": "Stian Grytøyr",
"email": "stian@grytoyr.net",
"url": "http://stian.grytoyr.net/"
},
"license": "MIT",
"main": "./lib",
"nyc": {
"reporter": [
"lcov",
"text-summary"
],
"report-dir": "./coverage"
},
"dependencies": {
"jsonwebtoken": "7.4.1",
"koa-unless": "1.0.0"
},
"devDependencies": {
"koa": "^2.0.1",
"mocha": "3.2.0",
"chai": "latest",
"nyc": "10.1.2",
"supertest": "3.0.0"
},
"engines": {
"node": ">= 7.6.0"
},
"scripts": {
"test": "nyc npm run test-only",
"test-only": "mocha --reporter spec test/test.js"
}
}