dataloader-cache-lru
Version:
LRU (least recently used) cache for Facebook's DataLoader.
65 lines (64 loc) • 1.8 kB
JSON
{
"name": "dataloader-cache-lru",
"description": "LRU (least recently used) cache for Facebook's DataLoader.",
"version": "1.0.1",
"homepage": "https://github.com/eddyystop/dataloader-cache-lru",
"main": "lib/",
"keywords": [
"feathers",
"feathers-plus",
"feathers-plugin",
"dataloader",
"DataLoader",
"GraphQL",
"cache",
"LRU"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/eddyystop/dataloader-cache-lru.git"
},
"author": {
"name": "John Joseph Szwaronek",
"email": "johnsz9999 at gmail dot com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/eddyystop/dataloader-cache-lru/issues"
},
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:pre": "npm version prerelease && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "semistandard lib/*.js lib/**/*.js test/*.js test/**/*.js --fix",
"mocha": "mocha --opts mocha.opts",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"test": "npm run lint && npm run coverage"
},
"semistandard": {
"sourceType": "module",
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"lru-cache": "4.1.1"
},
"devDependencies": {
"chai": "3.5.0",
"dataloader": "1.3.0",
"istanbul": "1.1.0-alpha.1",
"mocha": "3.5.3",
"semistandard": "11.0.0"
}
}