{
  "name": "@traveloka/validation",
  "version": "3.9.0",
  "react-native": "src/index.ts",
  "main": "lib/index.js",
  "types": "./lib/index.d.ts",
  "license": "MIT",
  "scripts": {
    "lint": "tslint --type-check -p tsconfig.json src/*.ts && tslint --type-check -p tsconfig.json tests/*.ts",
    "test": "jest",
    "test:coverage": "yarn test --coverage",
    "test:ci": "yarn lint && yarn test:coverage -i --reporters jest-simple-dot-reporter jest-junit",
    "test:html": "nyc npm test && nyc report --reporter=html",
    "prebuild": "npm run clean",
    "clean": "rimraf lib/*",
    "build": "tsc -p .",
    "watch": "tsc -w -p .",
    "prepublish": "npm run build"
  },
  "devDependencies": {
    "@types/jest": "^23.3.1",
    "jest": "^24.7.1",
    "jest-cli": "^24.7.1",
    "jest-junit": "^5.1.0",
    "jest-simple-dot-reporter": "^1.0.2",
    "nyc": "^12.0.2",
    "rimraf": "^2.6.2",
    "ts-jest": "^23.1.3",
    "tslint": "^5.11.0",
    "typescript": "^4"
  },
  "jest": {
    "notify": true,
    "transform": {
      ".(ts|tsx)": "ts-jest"
    },
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "json"
    ],
    "collectCoverageFrom": [
      "src/**/*.ts"
    ],
    "testURL": "http://localhost",
    "coverageDirectory": "./coverage/",
    "collectCoverage": true
  }
}
