-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 835 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 835 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
33
{
"name": "static-auth",
"version": "2.1.2",
"author": "Mickaël Allonneau <mickael.allonneau.pro@gmail.com>",
"description": "The most simple way to add Basic Authentication to a static website hosted on Vercel.",
"keywords": [
"authentication",
"basic",
"now",
"serverless",
"static",
"ssg",
"vercel"
],
"homepage": "https://github.com/flawyte/static-auth",
"license": "MIT",
"repository": "github:flawyte/static-auth",
"main": "dist/static-auth.js",
"module": "dist/static-auth.esm.js",
"source": "index.ts",
"scripts": {
"build": "microbundle",
"publish": "yarn build && npm publish"
},
"dependencies": {
"basic-auth": "^2.0.1",
"serve-static": "^1.15.0"
},
"devDependencies": {
"@types/serve-static": "^1.13.10",
"microbundle": "^0.14.2"
}
}