{
  "name": "psqlformat",
  "version": "1.24.0",
  "main": "dist/index.js",
  "bin": {
    "psqlformat": "dist/bin.js"
  },
  "description": "PostgreSQL SQL syntax beautifier",
  "keywords": [
    "sql",
    "postgres",
    "postgreSQL",
    "formatting"
  ],
  "author": "Brady Holt",
  "license": "MIT",
  "homepage": "https://github.com/bradymholt/psqlformat#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bradymholt/psqlformat.git"
  },
  "bugs": {
    "url": "https://github.com/bradymholt/psqlformat/issues"
  },
  "files": [
    "dist/",
    "vendor/"
  ],
  "types": "dist/index.d.ts",
  "devDependencies": {
    "@types/chai": "^4.2.13",
    "@types/globby": "^9.1.0",
    "@types/mocha": "^8.0.3",
    "@types/node": "^14.11.5",
    "@types/yargs": "^15.0.7",
    "chai": "^4.2.0",
    "jsh": "^0.39.0",
    "mocha": "^10.1.0",
    "prettier": "^2.1.2",
    "ts-node": "^9.0.0",
    "typescript": "^4.0.3"
  },
  "dependencies": {
    "globby": "^11.0.1",
    "yargs": "^16.0.3"
  },
  "prettier": {
    "printWidth": 120,
    "tabWidth": 2
  },
  "scripts": {
    "build": "tsc",
    "test": "npx mocha --require ts-node/register/type-check --recursive ./test/*.ts",
    "start": "ts-node src/bin.ts test/support/query.sql",
    "format": "npx prettier --write ./**/*.ts",
    "upgrade": "./scripts/upgrade-pgFormatter.js"
  }
}
