{
  "name": "@tql/utils",
  "description": "custom javascript utility library",
  "version": "1.1.2",
  "main": "./lib/index.js",
  "module": "./es/index.js",
  "types": "./types/index.d.ts",
  "license": "MIT",
  "sideEffects": true,
  "scripts": {
    "check": "tsc --noEmit",
    "check:watch": "npm run types -- --watch",
    "format": "prettier --config .prettierrc --write",
    "build": "npm run clean && npm run build:lib && npm run build:es",
    "build:lib": "tsc --target es5 --outDir lib -p ./tsconfig.build.json",
    "build:es": "tsc --target esnext --outDir es --declaration true --declarationDir types -p ./tsconfig.build.json",
    "clean": "rm -rf lib es",
    "test": "jest",
    "prepublish": "npm run build"
  },
  "dependencies": {
    "tslib": "^2.4.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.7.5",
    "@babel/core": "^7.6.0",
    "@babel/preset-env": "^7.6.0",
    "@babel/preset-typescript": "^7.6.0",
    "@tsconfig/node14": "^1.0.1",
    "@types/jest": "^24.0.18",
    "babel-jest": "^24.9.0",
    "husky": "^3.0.5",
    "jest": "^24.9.0",
    "lint-staged": "^9.2.5",
    "prettier": "^1.18.2",
    "ts-node": "^8.3.0",
    "typescript": "^4.6.4"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "(src|__test__)/**/*.(js|ts|tsx)": [
      "npm run format",
      "git add"
    ],
    "src/**/*.(js|ts|tsx)": [
      "npm run check"
    ]
  },
  "files": [
    "lib",
    "types",
    "es"
  ]
}
