-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 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
43
44
45
46
47
48
49
50
51
{
"name": "claudia-api-jwt-authenticator",
"version": "1.0.0",
"description": "Easily verify JWTs with Claudia",
"main": "main/lib",
"files": [
"main/lib"
],
"scripts": {
"test": "./test.sh",
"test:quick": "./test.sh --quick"
},
"keywords": [
"auth",
"authentication",
"authenticator",
"claudia",
"jsonwebtoken",
"jwt",
"plugin",
"verify"
],
"author": "Aaron J. Lang <[email protected]> (ajla.ng)",
"license": "MIT",
"repository": "aaronjameslang/claudia-api-jwt-authenticator",
"dependencies": {
"jsonwebtoken": "^8.5.1"
},
"optionalDependencies": {
"@types/jsonwebtoken": "^8.3.0",
"@types/aws-lambda": "^8.10.17"
},
"devDependencies": {
"ava": "^3.13.0",
"claudia-api-builder": "^4.1.2",
"nyc": "^14.1.1",
"tslint": "^5.20.1",
"tslint-config-standard": "^8.0.1",
"typescript": "^4.0.3"
},
"peerDependencies": {
"claudia-api-builder": "^4.1.0"
},
"ava": {
"files": [
"test/lib/**/*",
"test/js/**/*",
"!test/tslint.js"
]
}
}