UNPKG

least-frequently-used

Version:
61 lines (60 loc) 1.36 kB
{ "name": "least-frequently-used", "version": "1.2.3", "description": "Implementation of LFU from Leetcode with tests", "private": false, "main": "dist/index.js", "scripts": { "rollup": "rollup -c", "commit": "cz", "test": "jest", "semantic-release": "semantic-release" }, "keywords": [ "lfu", "LFU", "cache" ], "author": "", "license": "ISC", "lint-staged": { "*.{ts,tsx}": [ "git add" ] }, "devDependencies": { "@rollup/plugin-commonjs": "^23.0.5", "@rollup/plugin-node-resolve": "^15.0.1", "@rollup/plugin-typescript": "^10.0.1", "@types/jest": "^29.2.4", "commitizen": "^4.2.6", "cz-conventional-changelog": "^3.3.0", "husky": "^8.0.2", "jest": "^29.3.1", "lint-staged": "^13.1.0", "rollup": "^3.7.4", "rollup-plugin-dts": "^5.0.0", "rollup-plugin-peer-deps-external": "^2.2.4", "semantic-release": "^19.0.5", "ts-jest": "^29.0.3", "ts-node": "^10.9.1" }, "release": { "branches": [ "main" ], "plugins": [ "@semantic-release/npm", "@semantic-release/github" ] }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "repository": { "type": "git", "url": "https://github.com/vladislavkovaliov/Least-Frequently-Used.git" } }