{
  "name": "typescript-memoize",
  "version": "1.1.1",
  "description": "Memoize decorator for Typescript",
  "main": "./dist/memoize-decorator.js",
  "module": "./dist/es2015/memoize-decorator.js",
  "typings": "./dist/memoize-decorator.d.ts",
  "scripts": {
    "test": "karma start test/karma.config.js --single-run",
    "prepublish": "npm run build && npm run build:es2015",
    "clean": "rm -rf ./dist",
    "build": "tsc",
    "build:es2015": "tsc --module es2015 --target es2015 --outDir dist/es2015",
    "tslint": "tslint --project .",
    "eslint": "npm run tslint"
  },
  "files": [
    "dist",
    "src"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/darrylhodgins/typescript-memoize.git"
  },
  "keywords": [
    "typescript",
    "memoize",
    "functional",
    "decorator"
  ],
  "author": "Darryl Hodgins <darrylh@darryh.ca>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/darrylhodgins/typescript-memoize/issues"
  },
  "homepage": "https://github.com/darrylhodgins/typescript-memoize#readme",
  "devDependencies": {
    "@types/jasmine": "3.6.2",
    "@types/node": "14.14.9",
    "awesome-typescript-loader": "5.2.1",
    "es6-shim": "0.35.6",
    "jasmine-core": "3.6.0",
    "karma": "6.3.16",
    "karma-chrome-launcher": "3.1.0",
    "karma-es6-shim": "1.0.0",
    "karma-jasmine": "4.0.1",
    "karma-jasmine-html-reporter": "1.5.4",
    "karma-junit-reporter": "2.0.1",
    "karma-sourcemap-loader": "0.3.8",
    "karma-spec-reporter": "0.0.32",
    "karma-threshold-reporter": "0.1.15",
    "karma-typescript": "5.2.0",
    "source-map-loader": "1.1.2",
    "tslib": "2.0.3",
    "tslint": "6.1.3",
    "typescript": "4.1.2"
  }
}
