{
  "name": "typecache",
  "version": "0.3.2",
  "description": "Customizable caching library for TypeScript",
  "main": "dist/esm/index.js",
  "types": "dist/esm/types.d.ts",
  "module": "dist/esm/index.js",
  "jsdelivr": "dist/cjs/index.js",
  "unpkg": "dist/cjs/index.js",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "type": "module",
  "scripts": {
    "test": "nyc mocha -r ts-node/register test/**/*.spec.ts",
    "prepare": "npm run build",
    "build": "tsc -p tsconfig.json && tsc -p tsconfig.esnext.json",
    "lint": "tslint --fix --project ."
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wyattis/typecache.git"
  },
  "author": "wyattis",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/wyattis/typecache/issues"
  },
  "homepage": "https://github.com/wyattis/typecache#readme",
  "devDependencies": {
    "@types/chai": "^4.2.11",
    "@types/express": "^4.17.7",
    "@types/lru-cache": "^5.1.1",
    "@types/mocha": "^8.0.0",
    "@types/node": "^14.0.23",
    "chai": "^4.2.0",
    "lru-cache": "^7.3.1",
    "mocha": "^8.0.1",
    "nyc": "^15.1.0",
    "ts-node": "^8.10.2",
    "tslint": "^6.1.2",
    "tslint-config-standard": "^9.0.0",
    "typescript": "^3.9.6"
  },
  "nyc": {
    "extension": [
      ".ts",
      ".tsx"
    ],
    "exclude": [
      "src/**/*.d.ts"
    ],
    "reporter": [
      "text"
    ]
  }
}
