-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 887 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 887 Bytes
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
{
"name": "seneca-jwt-auth",
"version": "0.1.0",
"description": "JWT auth plugin for seneca-auth",
"main": "jwt-auth.js",
"scripts": {
"test": "lab -r console -v -L -m 3000 -t 78"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teaandcode/seneca-jwt-auth.git"
},
"keywords": [
"seneca",
"auth",
"jwt",
"plugin"
],
"author": {
"name": "Dave Nash",
"email": "dave.nash@teaandcode.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/teaandcode/seneca-jwt-auth/issues"
},
"homepage": "https://github.com/teaandcode/seneca-jwt-auth#readme",
"dependencies": {
"passport-jwt": "^2.2.1"
},
"devDependencies": {
"code": "^4.0.0",
"jsonwebtoken": "^7.2.1",
"lab": "^12.1.0",
"seneca": "plugin"
},
"peerDependencies": {
"seneca": "*",
"seneca-auth": "*"
}
}