{
  "name": "memo-decorator",
  "version": "1.0.0",
  "description": "Decorator for caching the results of your method calls using lodash.memoize",
  "main": "index.js",
  "scripts": {
    "test": "jest",
    "build": "tsc"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mgechev/memo-decorator.git"
  },
  "keywords": ["memoization", "decorator"],
  "author": "Minko Gechev <mgechev@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/mgechev/memo/issues"
  },
  "homepage": "https://github.com/mgechev/memo#readme",
  "dependencies": {
    "lodash.memoize": "^4.1.2"
  },
  "devDependencies": {
    "@types/jest": "^22.1.0",
    "jest": "^22.1.4",
    "typescript": "^2.6.2"
  },
  "jest": {
    "moduleFileExtensions": ["ts", "tsx", "js"],
    "transform": {
      "^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
    },
    "testMatch": ["**/__tests__/*.(ts|tsx|js)"]
  }
}