-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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": "@data-fair/sd-express",
"version": "1.4.3",
"description": "Middleware and router helpers to write expressjs applications that depend on simple-directory for authentication.",
"main": "index.js",
"scripts": {
"test": "nyc ava",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint *.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/data-fair/sd-express.git"
},
"keywords": [
"Simple",
"Directory",
"ExpressJS",
"Authentication",
"Session"
],
"author": "Alban Mouton <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/data-fair/sd-express/issues"
},
"homepage": "https://github.com/data-fair/sd-express#readme",
"dependencies": {
"axios": "^1.3.4",
"cookies": "^0.8.0",
"debug": "^3.2.6",
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^2.1.2"
},
"devDependencies": {
"ava": "^0.25.0",
"eslint": "^8.32.0",
"eslint-config-standard": "^17.0.0",
"express": "^4.18.1",
"nyc": "^11.9.0"
}
}