lru-cache-ts
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "lru-cache-ts", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "A typescript implementation of lru cache", | ||
@@ -18,3 +18,5 @@ "main": "./dist/index.js", | ||
"test:watch": "jest --watch --coverage=false", | ||
"lint": "eslint . --ext .js,.ts" | ||
"lint": "eslint . --ext .js,.ts", | ||
"preversion": "yarn test", | ||
"postversion": "git push --tags && yarn publish --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\"" | ||
}, | ||
@@ -21,0 +23,0 @@ "devDependencies": { |
# LRU Cache TS | ||
This library is inspired from [node-lru-cache](https://github.com/isaacs/node-lru-cache) and is completely written in Typescript with test coverage. | ||
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/droyson/lru-cache-ts/build) | ||
[![Coverage Status](https://coveralls.io/repos/github/droyson/lru-cache-ts/badge.svg?branch=main)](https://coveralls.io/github/droyson/lru-cache-ts?branch=main) | ||
## Installation: | ||
@@ -5,0 +9,0 @@ npm: |
28525
14
76