{ "name": "@keyv/memcache", "version": "1.4.1", "description": "Memcache storage adapter for Keyv", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc --project tsconfig.dist.json", "prepare": "yarn build", "test": "xo && c8 ava --serial", "test:ci": "xo && ava --serial", "clean": "rm -rf node_modules && rm -rf ./coverage" }, "xo": { "rules": { "unicorn/prefer-module": 0, "unicorn/prefer-event-target": 0, "unicorn/no-array-reduce": 0, "n/prefer-global/process": 0, "node/prefer-global/process": 0, "unicorn/prefer-object-from-entries": 0, "unicorn/prefer-node-protocol": 0, "@typescript-eslint/consistent-type-imports": 0, "@typescript-eslint/consistent-type-definitions": 0, "@typescript-eslint/no-empty-function": 0, "import/extensions": 0, "no-promise-executor-return": 0, "ava/no-ignored-test-files": [ "error", { "extensions": [ "js", "ts" ] } ] } }, "ava": { "require": [ "requirable", "ts-node/register" ], "extensions": [ "js", "ts" ] }, "repository": { "type": "git", "url": "git+https://github.com/jaredwray/keyv.git" }, "keywords": [ "memcache", "keyv", "storage", "adapter", "key", "value", "store", "cache", "ttl" ], "author": "Jared Wray (https://jaredwray.com)", "license": "MIT", "bugs": { "url": "https://github.com/jaredwray/keyv/issues" }, "homepage": "https://github.com/jaredwray/keyv", "dependencies": { "json-buffer": "^3.0.1", "memjs": "^1.3.2" }, "devDependencies": { "@keyv/test-suite": "*", "@types/memjs": "^1.3.3", "keyv": "*", "requirable": "^1.0.5", "ts-node": "^10.9.2", "tsd": "^0.30.4", "typescript": "^5.3.3" }, "tsd": { "directory": "test" }, "files": [ "dist" ] }