forked from LionC/express-basic-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.11 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
{
"name": "@78nine/polka-basic-auth",
"version": "1.2.1",
"description": "Plug & play basic auth middleware for Polka",
"main": "index.js",
"types": "polka-basic-auth.d.ts",
"scripts": {
"check-dts": "tsc polka-basic-auth.d.ts",
"test": "mocha test.js && npm run check-dts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/78nine/polka-basic-auth.git"
},
"keywords": [
"polka",
"middleware",
"basic",
"auth",
"authentication",
"http"
],
"author": "LionC <me@lionc.de>",
"contributors": [{
"name": "Grzegorz (Greg) Twardowski",
"url": "https://github.com/tvardy"
}],
"license": "MIT",
"bugs": {
"url": "https://github.com/78nine/polka-basic-auth/issues"
},
"homepage": "https://github.com/78nine/polka-basic-auth#readme",
"dependencies": {
"basic-auth": "2.0.1"
},
"devDependencies": {
"@types/node": "17.0.12",
"mocha": "9.2.0",
"polka": "next",
"should": "13.2.3",
"supertest": "6.2.2",
"typescript": "4.5.5"
},
"files": [
"index.js",
"polka-basic-auth.d.ts"
],
"private": false
}