-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "create-express-auth-middleware",
"description": "Library to create Express JS authentication and authorization middlewares",
"version": "1.5.0",
"main": "./dist/index.js",
"types": "./dist",
"files": [
"dist"
],
"scripts": {
"build:watch": "npx tsc -w",
"build:default": "npx tsc",
"build:nocomments": "npx tsc -p ./tsconfig.nocomments.json",
"build": "npm run build:default && npm run build:nocomments"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Enkel-Digital/create-express-auth-middleware.git"
},
"keywords": [
"Express",
"auth",
"authentication",
"authorization",
"middleware",
"functional",
"factory"
],
"bugs": {
"url": "https://github.com/Enkel-Digital/create-express-auth-middleware/issues"
},
"homepage": "https://github.com/Enkel-Digital/create-express-auth-middleware#readme",
"author": "JJ",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.13",
"typescript": "^4.6.2"
}
}