-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
48 lines (48 loc) · 1014 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
{
"name": "koa-userauth",
"version": "2.2.0",
"description": "user auth middleware for koa",
"main": "index.js",
"scripts": {
"test": "make test",
"ci": "make test-cov"
},
"repository": {
"type": "git",
"url": "git://github.com/koajs/userauth.git"
},
"files": [
"index.js"
],
"keywords": [
"auth",
"user",
"middleware",
"koa"
],
"author": "dead_horse <[email protected]> (https://github.com/dead-horse)",
"license": "MIT",
"bugs": {
"url": "https://github.com/koajs/userauth/issues"
},
"homepage": "https://github.com/koajs/userauth",
"devDependencies": {
"istanbul": "next",
"koa": "^2.4.1",
"koa-generic-session": "^2.0.0",
"koa-route": "^3.2.0",
"mm": "^2.2.0",
"mocha": "^4.0.1",
"should": "^13.1.3",
"should-http": "^0.1.0",
"supertest": "^3.0.0"
},
"dependencies": {
"copy-to": "^2.0.1",
"is-type-of": "^1.4.0",
"path-match": "^1.2.4"
},
"engines": {
"node": ">= 8"
}
}