{
  "name": "imc",
  "version": "1.0.0",
  "description": "IMC is an In-Memory Cache key-value store.",
  "author": "Mark <mark@remarkablemark.org>",
  "main": "cjs/index.js",
  "scripts": {
    "build": "npm run build:cjs && npm run build:umd",
    "build:cjs": "tsc",
    "build:umd": "rollup --config",
    "clean": "rm -rf cjs umd",
    "lint": "npm run lint:js && npm run lint:ts && npm run lint:tsc",
    "lint:js": "eslint --ignore-path .gitignore .",
    "lint:ts": "npm run lint:js -- --ext .ts",
    "lint:tsc": "tsc --noEmit",
    "lint:fix": "npm run lint:js -- --fix && npm run lint:ts -- --fix",
    "prepublishOnly": "npm run lint && npm test && npm run clean && npm run build",
    "release": "standard-version --no-verify",
    "test": "jest --coverage",
    "test:watch": "npm test -- --watch"
  },
  "homepage": "https://remarkablemark.org/imc/",
  "repository": {
    "type": "git",
    "url": "https://github.com/remarkablemark/imc"
  },
  "bugs": {
    "url": "https://github.com/remarkablemark/imc"
  },
  "keywords": [
    "imc",
    "in-memory",
    "cache",
    "key-value",
    "store"
  ],
  "devDependencies": {
    "@commitlint/cli": "^8.3.5",
    "@commitlint/config-conventional": "^8.3.4",
    "@rollup/plugin-typescript": "^2.1.0",
    "@types/jest": "^25.2.3",
    "@typescript-eslint/eslint-plugin": "^3.0.0",
    "@typescript-eslint/parser": "^3.0.0",
    "eslint": "^7.0.0",
    "eslint-plugin-prettier": "^3.1.3",
    "husky": "^4.2.5",
    "jest": "^25.5.4",
    "lint-staged": "^10.2.6",
    "prettier": "^2.0.5",
    "rollup": "^2.10.7",
    "rollup-plugin-uglify": "^6.0.4",
    "standard-version": "^8",
    "ts-jest": "^25.5.1",
    "typescript": "<3.8.0"
  },
  "files": [
    "cjs/",
    "umd/"
  ],
  "license": "MIT"
}
