-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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
52
53
{
"name": "@bedrock/oauth2-verifier",
"version": "2.3.2-0",
"type": "module",
"description": "Bedrock OAuth2 Verifier Tools",
"main": "./lib/index.js",
"files": [
"lib/**/*.js"
],
"scripts": {
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/bedrock-oauth2-verifier"
},
"keywords": [
"bedrock",
"oauth2"
],
"author": {
"name": "Digital Bazaar, Inc.",
"email": "[email protected]",
"url": "https://digitalbazaar.com/"
},
"bugs": {
"url": "https://github.com/digitalbazaar/bedrock-oauth2-verifier/issues"
},
"homepage": "https://github.com/digitalbazaar/bedrock-oauth2-verifier",
"dependencies": {
"@digitalbazaar/http-client": "^4.0.0",
"@digitalbazaar/lru-memoize": "^3.0.0",
"jose": "^5.9.6"
},
"peerDependencies": {
"@bedrock/core": "^6.0.1",
"@bedrock/https-agent": "^4.0.0"
},
"devDependencies": {
"eslint": "^8.18.0",
"eslint-config-digitalbazaar": "^5.2.0",
"eslint-plugin-jsdoc": "^50.6.2",
"eslint-plugin-unicorn": "^56.0.1",
"jsdoc": "^4.0.4",
"jsdoc-to-markdown": "^9.1.1"
},
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">=18"
}
}