{
  "name": "equifax-credit-parser-ca",
  "version": "0.0.4-alpha2",
  "description": "Parses Equifax Canada FFF credit reports",
  "keywords": [
    "equifax"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://gitlab.com/blinklending/equifax-credit-parser.git"
  },
  "bugs": {
    "url": "https://gitlab.com/blinklending/equifax-credit-parser/-/issues"
  },
  "homepage": "https://gitlab.com/blinklending/equifax-credit-parser",
  "scripts": {
    "clean": "rimraf dist",
    "build": "npm run clean && tsc",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "tslint 'src/**/*.ts'",
    "prettier": "prettier --parser typescript --write '**/*.ts'",
    "precommit": "lint-staged",
    "postversion": "git push origin master --tags --no-verify",
    "preversion": "npm run lint && npm run build"
  },
  "author": "Finmo Financial Inc.",
  "license": "MIT",
  "devDependencies": {
    "@types/jest": "25.2.1",
    "@types/node": "11.13.0",
    "husky": "4.2.5",
    "jest": "24.9.0",
    "lint-staged": "10.1.6",
    "prettier": "2.0.5",
    "rimraf": "3.0.2",
    "ts-jest": "24.3.0",
    "ts-node": "8.9.0",
    "tslint": "6.1.1",
    "tslint-config-prettier": "1.18.0",
    "typescript": "3.9.2",
    "typescript-tslint-plugin": "^0.3.0"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "jest": {
    "transform": {
      ".(ts|tsx)": "ts-jest"
    },
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
    "collectCoverageFrom": [
      "src/**/*.{ts,tsx}"
    ],
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "json"
    ]
  },
  "dependencies": {
    "xml2js": "^0.4.23"
  }
}
