{
  "name": "@data-heaving/common-sql",
  "version": "1.0.0",
  "author": {
    "name": "Stanislav Muhametsin",
    "email": "346799+stazz@users.noreply.github.com",
    "url": "https://github.com/stazz"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/DataHeaving/common.git"
  },
  "scripts": {
    "build": "npm run tsc && npm run lint",
    "tsc": "tsc --project tsconfig.json && tsc --project tsconfig.json --outDir ./dist/esm --module ES2020",
    "prepublishOnly": "rm -rf dist .nyc_output coverage && npm run build && npm run test && npm run remove-test-files && npm run format-output-files",
    "lint": "eslint ./src --ext .ts,.tsx",
    "watch": "tsc -w",
    "test": "nyc ava",
    "remove-test-files": "rm -rf dist/*/tests",
    "format-output-files": "echo 'const config = require(\"./.eslintrc\"); config.parserOptions.createDefaultProgram = true; config.settings = { [\"import/resolver\"]: { node: { paths: [\"dist\"], extensions: [\".d.ts\"] } } }; console.log(JSON.stringify(config));' | node > .eslintrc-publish.json && eslint --no-eslintrc --config '.eslintrc-publish.json' --fix --ext '.d.ts' dist; FOF_RC=$?; rm -f '.eslintrc-publish.json'; exit $FOF_RC"
  },
  "peerDependencies": {
    "@data-heaving/common": "^1.0.0"
  },
  "devDependencies": {
    "@data-heaving/common": "^1.0.0",
    "@types/node": "14.14.31",
    "@typescript-eslint/eslint-plugin": "4.22.0",
    "@typescript-eslint/parser": "4.22.0",
    "ava": "4.0.0-alpha.2",
    "eslint": "7.25.0",
    "eslint-config-prettier": "8.3.0",
    "eslint-plugin-prettier": "3.4.0",
    "nyc": "15.1.0",
    "prettier": "2.2.1",
    "typescript": "4.2.4"
  },
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/cjs/index.d.ts",
  "files": [
    "dist/",
    "src/"
  ],
  "ava": {
    "files": [
      "dist/cjs/**/tests/*.spec.js"
    ],
    "timeout": "10m"
  }
}
