-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 992 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": "jwks-source",
"version": "1.0.0",
"description": "Loads JWKS synchronously and asynchronously",
"main": "lib/index.js",
"keywords": [
"JWT",
"JWK",
"JWKS",
"Sync",
"Keys"
],
"repository": {
"type": "git",
"url": "https://github.com/vandium-io/aws-cognito-public-keys.git"
},
"files": [
"/lib"
],
"engines": {
"node": ">=12"
},
"scripts": {
"test": "nyc mocha './lib/**/__tests__/*' --recursive",
"lint": "eslint"
},
"author": "Vandium Software Inc.",
"license": "BSD-3-Clause",
"nyc": {
"check-coverage": true,
"include": [
"lib/**/*.js"
],
"reporter": [
"lcov",
"text"
]
},
"dependencies": {
"sync-rpc": "^1.3.6"
},
"devDependencies": {
"chai": "^4.1.2",
"env-restorer": "^1.0.0",
"eslint": "^6.8.0",
"eslint-plugin-mocha": "^6.2.2",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"rewiremock": "^3.13.9",
"sinon": "^8.1.0"
}
}