{
  "name": "xlsx-compare",
  "version": "1.0.1",
  "description": "Efficient way to compare excel files in the scope of content. Spot where the excel file differs to the cell.",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "scripts": {
    "test": "npm run build && jest tests/",
    "build": "tsc",
    "lint": "eslint 'src/**/*.{ts,js}'",
    "format": "prettier --write 'src/**/*.{ts,js}'",
    "format:check": "prettier --check 'src/**/*.{ts,js}'",
    "prepare": "npm run build",
    "prepublishOnly": "npm test && npm run lint",
    "version": "npm run format && git add -A src",
    "postversion": "git push && git push --tags"
  },
  "repository": {
    "type": "git",
    "url": "git@personal:kurekszymon/xlsx-compare.git"
  },
  "keywords": [
    "xlsx",
    "compare",
    "cypress"
  ],
  "author": "Szymon Kurek",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/kurekszymon/xlsx-compare/issues"
  },
  "homepage": "https://github.com/kurekszymon/xlsx-compare#readme",
  "files": [
    "lib/**/*"
  ],
  "dependencies": {
    "lodash": "^4.17.21",
    "xlsx": "^0.18.5"
  },
  "devDependencies": {
    "@types/jest": "^28.1.6",
    "@types/lodash": "^4.14.182",
    "@types/node": "^18.6.3",
    "@typescript-eslint/eslint-plugin": "^5.32.0",
    "@typescript-eslint/parser": "^5.32.0",
    "eslint": "^8.21.0",
    "eslint-plugin-jest": "^26.7.0",
    "jest": "^28.1.3",
    "prettier": "^2.7.1",
    "ts-jest": "^28.0.7",
    "ts-node": "^10.9.1",
    "typescript": "^4.7.4"
  }
}
