{
  "name": "fixed-width-parser",
  "version": "3.0.0",
  "description": "A fixed width data parser",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/keawade/fixed-width-parser.git"
  },
  "author": {
    "name": "Keith Wade",
    "email": "keawade@protonmail.com"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/keawade/fixed-width-parser/issues"
  },
  "homepage": "https://github.com/keawade/fixed-width-parser",
  "dependencies": {
    "date-fns": "^2.28.0"
  },
  "devDependencies": {
    "@types/jest": "^28.1.1",
    "@types/node": "^16.11.39",
    "@typescript-eslint/eslint-plugin": "^5.27.1",
    "@typescript-eslint/parser": "^5.27.1",
    "eslint": "^8.17.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-import": "^2.26.0",
    "husky": "^8.0.1",
    "jest": "^28.1.1",
    "prettier": "^2.6.2",
    "ts-jest": "^28.0.4",
    "typescript": "^4.7.3"
  },
  "scripts": {
    "build": "tsc",
    "bump": "npm --no-git-tag-version version",
    "prepublishOnly": "npm run build",
    "test": "jest --coverage",
    "test:watch": "npm run test -- --watch",
    "check": "npm run check:eslint && npm run check:prettier && npm run check:build",
    "check:build": "tsc --noEmit",
    "check:eslint": "eslint src/** test/**",
    "check:prettier": "prettier . --list-different",
    "husky:pre-push": "npm run check",
    "fix": "npm run fix:prettier && npm run fix:eslint",
    "fix:eslint": "npm run check:eslint -- --fix",
    "fix:prettier": "npm run check:prettier -- --write",
    "prepare": "husky install"
  },
  "keywords": [
    "fixed",
    "fixed width",
    "format",
    "parser"
  ],
  "engines": {
    "node": ">=12.0.0"
  }
}
