-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·62 lines (62 loc) · 1.89 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
61
62
{
"name": "@phntms/next-basic-auth",
"description": "Lightweight middleware to add basic-auth protection onto your Next.js site.",
"version": "0.0.1",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/phantomstudios/next-basic-auth#readme",
"repository": {
"type": "git",
"url": "https://github.com/phantomstudios/next-basic-auth.git"
},
"bugs": {
"url": "https://github.com/phantomstudios/next-basic-auth/issues"
},
"keywords": [
"next.js",
"middleware",
"auth",
"basic-auth",
"protect"
],
"scripts": {
"build": "tsc",
"build:types": "tsc --emitDeclarationOnly",
"prepublishOnly": "npm run build",
"lint": "NODE_ENV=test npm-run-all --parallel lint:*",
"lint:js": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:format": "prettier \"**/*.{md,html,yaml,yml}\" --check",
"lint:type-check": "tsc --noEmit",
"fix": "npm-run-all --sequential fix:*",
"fix:js": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
"fix:format": "prettier \"**/*.{md,html,yaml,yml}\" --write",
"depcheck": "npx npm-check --update"
},
"author": "John Chipps-Harding ([email protected])",
"license": "MIT",
"peerDependencies": {
"next": ">=10.1.3"
},
"devDependencies": {
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@types/basic-auth": "^1.1.3",
"@types/tsscmp": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"babel-eslint": "^10.1.0",
"browser-env": "^3.2.6",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"next": ">=10.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.1",
"typescript": "^4.3.2"
},
"dependencies": {
"basic-auth": "^2.0.1",
"tsscmp": "^1.0.6"
}
}