{
  "name": "fast-array-diff",
  "version": "1.1.0",
  "description": "Implementation of paper 'An O(ND) Difference Algorithm and Its Variations' on array",
  "homepage": "https://github.com/YuJianrong/fast-array-diff",
  "bugs": {
    "url": "https://github.com/YuJianrong/fast-array-diff/issues"
  },
  "repository": "YuJianrong/fast-array-diff",
  "main": "./dist/index.js",
  "module": "./esm/index.js",
  "scripts": {
    "clean": "rm -rf dist esm; rm -rf coverage; rm -rf dist_map",
    "clean-test": "rm -rf dist/test esm/test dist_map",
    "commit": "cz",
    "prebuild": "npm run clean",
    "build": "tsc && tsc -p tsconfig-esm.json",
    "test": "mocha dist/test/*.spec.js",
    "coverage": "tsc --sourceMap --outDir dist_map && istanbul cover node_modules/.bin/_mocha -- dist_map/test/*.spec.js",
    "debug": "npm run build && npm run test -- --debug-brk",
    "lint": "eslint './src/**/*.ts' --max-warnings 0",
    "prepare": "husky install"
  },
  "keywords": [
    "array",
    "diff"
  ],
  "author": "Jianrong Yu <yujianrong@gmail.com>",
  "license": "MIT",
  "devDependencies": {
    "@commitlint/cli": "^17.0.3",
    "@commitlint/config-conventional": "^17.0.3",
    "@semantic-release/changelog": "^6.0.2",
    "@semantic-release/git": "^10.0.1",
    "@types/mocha": "^10.0.0",
    "@types/node": "^18.7.5",
    "@typescript-eslint/eslint-plugin": "^5.33.1",
    "@typescript-eslint/parser": "^5.33.1",
    "chai": "^4.3.6",
    "commitizen": "^4.2.5",
    "coveralls": "^3.1.1",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^8.22.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-prettier": "^4.2.1",
    "husky": "^8.0.1",
    "istanbul": "^0.4.5",
    "lint-staged": "^13.0.3",
    "mocha": "^10.0.0",
    "prettier": "^2.7.1",
    "remap-istanbul": "^0.13.0",
    "typescript": "^4.7.4"
  },
  "lint-staged": {
    "*.{json,md,less,yaml,yml}": [
      "prettier --write"
    ],
    "*.{ts,tsx}": [
      "eslint --fix --max-warnings 0"
    ]
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  }
}
