generated from digitalbazaar/bedrock-module-template-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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": "@bedrock/tokenized-cache",
"version": "1.0.1-0",
"type": "module",
"description": "Bedrock Tokenized Cache",
"main": "./lib/index.js",
"scripts": {
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/bedrock-tokenized-cache"
},
"keywords": [
"bedrock",
"tokenization"
],
"author": {
"name": "Digital Bazaar, Inc.",
"email": "[email protected]",
"url": "https://digitalbazaar.com/"
},
"bugs": {
"url": "https://github.com/digitalbazaar/bedrock-tokenized-cache/issues"
},
"homepage": "https://github.com/digitalbazaar/bedrock-tokenized-cache",
"dependencies": {
"@digitalbazaar/lru-memoize": "^3.0.2",
"assert-plus": "^1.0.0",
"base64url-universal": "^2.0.0",
"canonicalize": "^1.0.8"
},
"peerDependencies": {
"@bedrock/core": "^6.0.1",
"@bedrock/mongodb": "^10.0.0",
"@bedrock/tokenizer": "^10.0.0"
},
"devDependencies": {
"eslint": "^8.47.0",
"eslint-config-digitalbazaar": "^5.0.1",
"eslint-plugin-jsdoc": "^46.5.0",
"eslint-plugin-unicorn": "^48.0.1",
"jsdoc-to-markdown": "^8.0.0"
},
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">=18"
}
}