-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "express-authorization-provider",
"version": "1.2.1",
"description": "A Simple & Lightweight Authorization Provider for Express Middleware Written in Typescript",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"test": "npm run build && node __tests__/provider.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MorpheusZero/express-authorization-provider.git"
},
"keywords": [
"express",
"middleware",
"roles",
"connect",
"authorization",
"connect-roles",
"passport providers",
"auth"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/MorpheusZero/express-authorization-provider/issues"
},
"homepage": "https://github.com/MorpheusZero/express-authorization-provider#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.21",
"prettier": "^2.5.1",
"typescript": "^4.8.4"
},
"peerDependencies": {
"express": "^4.17.3"
}
}