-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.24 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
{
"name": "express-simple-access-control",
"version": "1.1.0",
"license": "MIT",
"author": "Hiroki Yorimitsu <[email protected]> (https://github.com/hyorimitsu)",
"homepage": "https://github.com/hyorimitsu/express-simple-access-control",
"bugs": "https://github.com/hyorimitsu/express-simple-access-control/issues",
"repository": {
"type": "git",
"url": "https://github.com/hyorimitsu/express-simple-access-control.git",
"directory": "src"
},
"main": "dist/index.js",
"scripts": {
"build": "yarn run compile",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "yarn run compile",
"pretest": "yarn run compile",
"posttest": "yarn run lint"
},
"engines": {
"node": ">=16"
},
"keywords": [
"express",
"access",
"control",
"ip",
"filter",
"basic",
"auth"
],
"dependencies": {
"basic-auth": "^2.0.1",
"tsscmp": "^1.0.6"
},
"devDependencies": {
"@types/basic-auth": "^1.1.3",
"@types/express": "^4.17.17",
"@types/node": "^18.14.6",
"@types/tsscmp": "^1.0.0",
"express": "^4.18.2",
"gts": "^3.1.1",
"typescript": "^4.9.5"
},
"peerDependencies": {
"express": "^4.18.0"
}
}