{
  "name": "@vuex-orm/plugin-search",
  "version": "0.24.1",
  "description": "Vuex ORM plugin for adding fuzzy search feature through model entities.",
  "main": "dist/vuex-orm-search.common.js",
  "module": "dist/vuex-orm-search.esm.js",
  "unpkg": "dist/vuex-orm-search.js",
  "types": "lib/index.d.ts",
  "files": [
    "dist",
    "lib"
  ],
  "scripts": {
    "build": "yarn clean && yarn build:ts && yarn build:main ",
    "build:ts": "tsc -p tsconfig.build.json",
    "build:main": "node build/build.js",
    "lint": "tslint '{src,test}/**/*.ts' -c tslint.json -p . --fix",
    "test": "jest",
    "test:watch": "jest --watchAll",
    "coverage": "jest --collect-coverage",
    "clean": "rm -rf dist && rm -rf lib && rm -rf coverage && rm -rf .nyc_output && rm -rf .tmp"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/vuex-orm/plugin-search.git"
  },
  "keywords": [
    "vue",
    "vuex",
    "vuex-plugin",
    "vuex-orm",
    "fuzzy search"
  ],
  "author": "Conan Crawford <cj@cjcrawford.com>",
  "contributors": [
    "Kia Ishii <kia.king.08@gmail.com>"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/vuex-orm/plugin-search/issues"
  },
  "peerDependencies": {
    "@vuex-orm/core": ">=0.34.0"
  },
  "dependencies": {
    "fuse.js": "^3.4.6"
  },
  "devDependencies": {
    "@types/jest": "^24.0.23",
    "@vuex-orm/core": "^0.34.0",
    "codecov": "^3.6.1",
    "jest": "^24.9.0",
    "rollup": "^1.27.5",
    "rollup-plugin-commonjs": "^10.1.0",
    "rollup-plugin-node-resolve": "^5.2.0",
    "ts-jest": "^24.2.0",
    "tslint": "^5.20.1",
    "tslint-config-standard": "^9.0.0",
    "typescript": "^3.7.2",
    "uglify-js": "^3.6.9",
    "vue": "^2.6.10",
    "vuex": "^3.1.2"
  },
  "jest": {
    "moduleFileExtensions": [
      "js",
      "ts",
      "json"
    ],
    "moduleNameMapper": {
      "^@/(.*)$": "<rootDir>/src/$1",
      "^test/(.*)$": "<rootDir>/test/$1"
    },
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
    "collectCoverageFrom": [
      "src/**/*.ts",
      "!**/node_modules/**"
    ]
  }
}
