{
  "name": "walidate",
  "version": "0.1.6",
  "description": "Validation library.",
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "repository": "git@github.com:thevtm/walidate.git",
  "author": "Vinícius Tabille Manjabosco <tallibba@gmail.com>",
  "license": "MIT",
  "scripts": {
    "clean": "rimraf dist",
    "build": "tsc",
    "test": "jest",
    "test:ci": "jest --coverage --coverageReporters=text-lcov | coveralls",
    "lint": "tslint --project tsconfig.json",
    "type-check": "tsc --noEmit",
    "tslint-check": "tslint-config-prettier-check ./tslint.json",
    "format": "prettier --write --config .prettierrc",
    "format:all": "prettier --write --config .prettierrc 'src/**/*.ts'",
    "prepublishOnly": "npm run clean && npm run lint && npm run test && npm run build",
    "precommit": "npm run type-check && npm run lint && npm test"
  },
  "dependencies": {
    "lodash": "^4.17.5",
    "tslib": "^1.9.0"
  },
  "devDependencies": {
    "@types/jest": "^22.2.0",
    "@types/lodash": "^4.14.104",
    "@types/node": "^9.4.7",
    "coveralls": "^3.0.0",
    "husky": "^0.14.3",
    "jest": "^22.4.2",
    "lint-staged": "^7.0.1",
    "prettier": "^1.11.1",
    "rimraf": "^2.6.2",
    "ts-jest": "^22.4.1",
    "tslint": "^5.9.1",
    "tslint-config-prettier": "^1.10.0",
    "typescript": "^2.7.2"
  },
  "jest": {
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
    "collectCoverage": true,
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json",
      "node"
    ]
  },
  "lint-staged": {
    "*.ts": [
      "npm run format",
      "git add"
    ]
  }
}
