forked from koajs/basic-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 768 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 768 Bytes
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
{
"name": "koa-basic-auth",
"description": "Blanket basic auth middleware for koa",
"repository": "koajs/basic-auth",
"version": "4.0.0",
"scripts": {
"test": "NODE_ENV=test mocha --reporter spec --exit",
"test-cov": "NODE_ENV=test istanbul cover ./node_modules/.bin/_mocha -- --exit",
"test-travis": "NODE_ENV=test istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --exit"
},
"keywords": [
"koa",
"auth",
"authentication",
"basicauth",
"basic auth"
],
"files": [
"index.js"
],
"devDependencies": {
"istanbul": "^0.4.5",
"koa": "^2.5.1",
"mocha": "^5.1.1",
"supertest": "^3.1.0"
},
"license": "MIT",
"dependencies": {
"basic-auth": "^2.0.0",
"tsscmp": "^1.0.6"
}
}