forked from rsms/js-lru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.41 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
{
"name": "lru_map",
"version": "0.4.1",
"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": "dist/lru.js",
"types": "lru.d.ts",
"typings": "lru.d.ts",
"scripts": {
"test": "node test.js && echo 'Verifying TypeScript definition...' && tsc --noEmit",
"build": "esbuild --minify --sourcemap --target=es2016 --outfile=dist/lru.js lru.js",
"prepublishOnly": "npm test",
"dist": "git status -uno --porcelain | grep -v \"?? \" && echo 'aborted; uncommitted changes' || (npm publish . && git tag v`node -p 'require(\"./package.json\").version'`) && echo 'Final step:'; echo ' git push origin master' v`node -p 'require(\"./package.json\").version'`",
"benchmark": "node --expose-gc benchmark.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsms/js-lru.git"
},
"files": [
"README.md",
"lru.d.ts",
"dist/lru.js",
"dist/lru.js.map",
".gitignore"
],
"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",
"devDependencies": {
"esbuild": "^0.5.26",
"typescript": "^3.9.7"
}
}