-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1019 Bytes
/
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
{
"name": "@florajs/auth-jwt",
"version": "5.0.0",
"description": "JSON Web Token authentication for Flora",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node --test"
},
"files": [
"index.js"
],
"pre-commit": "test",
"author": {
"name": "stock3 AG",
"email": "[email protected]"
},
"keywords": [
"florajs",
"auth",
"jwt"
],
"homepage": "https://github.com/florajs/auth-jwt",
"license": "MIT",
"repository": "florajs/auth-jwt",
"contributors": [
{
"name": "Nico Kaiser",
"email": "[email protected]"
}
],
"engines": {
"node": ">=18"
},
"dependencies": {
"jsonwebtoken": "^9.0.2",
"@florajs/errors": "^4.0.0"
},
"devDependencies": {
"abstract-logging": "^2.0.1",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"pre-commit": "^1.2.2",
"prettier": "^3.3.3",
"promise-events": "^0.2.4"
}
}