UNPKG

a-cachify

Version:
62 lines (61 loc) 1.32 kB
{ "name": "a-cachify", "version": "0.0.3", "description": "Easily add a cache layer to any function.", "main": "index.js", "scripts": { "lint": "xo", "lint:fix": "xo --fix", "test": "mocha test.js", "test:cov": "nyc npm run test", "test:loop": "while npm test --silent; do :; done" }, "dependencies": {}, "devDependencies": { "chai": "^4.2.0", "chai-as-promised": "^7.1.1", "mocha": "^7.0.0", "a-cachify": "file:.", "nyc": "^15.0.0", "xo": "^0.25.3" }, "keywords": [ "cache", "cachify", "wrapper" ], "files": [ "index.js", "LICENSE", "README.md" ], "engines": { "node": ">=8.6.0" }, "author": "dailyrandomphoto <dailyrandomphoto@gmail.com> (https://www.dailyrandomphoto.com/)", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/dailyrandomphoto/a-cachify.git" }, "bugs": { "url": "https://github.com/dailyrandomphoto/a-cachify/issues" }, "homepage": "https://github.com/dailyrandomphoto/a-cachify#readme", "xo": { "space": 2, "rules": { "promise/prefer-await-to-then": 0, "capitalized-comments": 0 }, "overrides": [ { "files": "test.js", "envs": [ "node", "mocha" ] } ] } }