UNPKG

icache

Version:

A simple queue cache of limited or unlimited length

49 lines (48 loc) 1.15 kB
{ "name": "icache", "author": "Alexey Bystrov <strikeentco@gmail.com>", "version": "1.1.2", "description": "A simple queue cache of limited or unlimited length", "engines": { "node": ">=4.0.0" }, "keywords": [ "cache", "queue", "fifo", "first in", "first out", "simple", "memory", "caching" ], "main": "./main.js", "files": [ "main.js" ], "scripts": { "test": "mocha test", "lint": "eslint main.js", "check": "npm run lint && npm run test", "cover": "istanbul cover ./node_modules/mocha/bin/_mocha", "test-on-travis": "istanbul cover --report lcovonly ./node_modules/mocha/bin/_mocha" }, "repository": { "type": "git", "url": "git+https://github.com/strikeentco/icache.git" }, "bugs": { "url": "https://github.com/strikeentco/icache/issues" }, "dependencies": {}, "devDependencies": { "eslint": "^3.15.0", "eslint-config-airbnb": "^14.1.0", "eslint-plugin-import": "^2.2.0", "eslint-plugin-jsx-a11y": "^4.0.0", "eslint-plugin-react": "^6.9.0", "mocha": "^3.0.2", "should": "^11.0.0" }, "license": "MIT" }