forked from rsms/js-lru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 953 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
{
"name": "lru_map",
"version": "0.3.3",
"description": "Finite key-value map using the Least Recently Used (LRU) algorithm where the most recently used objects are keept in the map while less recently used items are evicted to make room for new ones.",
"main": "lru.js",
"typings": "lru.d.ts",
"scripts": {
"test": "node test.js && echo 'Verifying TypeScript definition...' && tsc --noEmit",
"prepublish": "npm test",
"benchmark": "node --expose-gc benchmark.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsms/js-lru.git"
},
"keywords": [
"cache",
"lru",
"buffer",
"map"
],
"author": "Rasmus Andersson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rsms/js-lru/issues"
},
"homepage": "https://github.com/rsms/js-lru#readme",
"dependencies": {
"es6-symbol": "^3.1.1"
},
"devDependencies": {
"typescript": "^2.0.10"
}
}