-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1005 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
50
51
52
{
"name": "@malijs/jwt",
"version": "0.4.0",
"description": "Mali JWT authentication middleware",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/malijs/jwt.git"
},
"author": {
"name": "Bojan D.",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/malijs/jwt/issues"
},
"homepage": "https://github.com/malijs/jwt",
"keywords": [
"mali",
"grpc",
"service",
"server",
"microservice",
"jwt"
],
"scripts": {
"test": "ava -v"
},
"devDependencies": {
"ava": "^2.4.0",
"grpc": "^1.24.0",
"grpc-caller": "^0.13.0",
"mali": "^0.19.0",
"standard": "^14.3.1"
},
"ava": {
"files": [
"test/*.test.js"
]
},
"dependencies": {
"@malijs/bearer": "^0.2.0",
"jsonwebtoken": "^8.5.1",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"pify": "^4.0.0"
},
"publishConfig": {
"access": "public"
}
}