-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"name": "ttl-mem-cache",
"version": "4.1.3",
"description": "A in memory time to live cache with streaming support.",
"main": "lib/cache.js",
"directories": {
"lib": "lib"
},
"scripts": {
"bench": "node benchmark/cache.js",
"test": "tap test/*.js",
"test:coverage": "tap test/*.js --cov",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/trygve-lie/ttl-mem-cache.git"
},
"keywords": [
"cache",
"memcache",
"memory cache",
"ttl",
"time to live",
"performance",
"expire cache",
"expiring"
],
"author": "Trygve Lie",
"license": "MIT",
"bugs": {
"url": "https://github.com/trygve-lie/ttl-mem-cache/issues"
},
"homepage": "https://github.com/trygve-lie/ttl-mem-cache#readme",
"devDependencies": {
"eslint": "8.39.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.27.5",
"benchmark": "2.1.4",
"tap": "16.3.4",
"lolex": "6.0.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"semantic-release": "21.0.2"
},
"dependencies": {
"readable-stream": "4.3.0"
}
}