UNPKG

@openfinance/cache

Version:

A simple, in-memory cache for javascript projects

59 lines (58 loc) 1.23 kB
{ "name": "@openfinance/cache", "version": "1.0.1", "description": "A simple, in-memory cache for javascript projects", "main": "dist/index.js", "scripts": { "build": "tsc", "check": "tsc --noEmit", "test": "jest", "prepublishOnly": "tsc" }, "repository": { "type": "git", "url": "git+ssh://github.com:cfxmarkets/ts-cache.git" }, "keywords": [ "openfinance", "cache", "memcached", "redis" ], "author": "Openfinance Developers", "license": "ISC", "bugs": { "url": "https://github.com/cfxmarkets/ts-cache/issues" }, "homepage": "https://github.com/cfxmarkets/ts-cache#readme", "dependencies": { "@types/node": "^8.10.58", "ts-simple-interfaces": "^0.3.1" }, "devDependencies": { "@types/jest": "^24.0.17", "husky": "^1.3.1", "jest": "^24.8.0", "prettier": "^1.16.0", "pretty-quick": "^1.10.0", "ts-jest": "^24.0.2", "typescript": "^3.7.5" }, "prettier": { "printWidth": 100, "trailingComma": "es5" }, "husky": { "hooks": { "pre-commit": "pretty-quick --staged" } }, "jest": { "roots": [ "<rootDir>/tests" ], "transform": { "^.+\\.tsx?$": "ts-jest" } } }