{
  "name": "basketry",
  "version": "0.2.2",
  "description": "Generate service-oriented code from popular API definition languages",
  "main": "./lib/index.js",
  "bin": {
    "basketry": "./lib/cli.js"
  },
  "scripts": {
    "test": "jest",
    "clean": "run-s -s clean:*",
    "lint": "run-s -s lint:*",
    "fix": "run-s -s fix:*",
    "codegen": "run-s -s codegen:*",
    "clean:output": "rimraf lib",
    "start": "node ./lib/index.js",
    "prebuild": "run-s -s clean codegen lint",
    "build": "run-s -s build:*",
    "build:typescript": "tsc",
    "lint:eslint": "eslint src/**/*.*",
    "fix:eslint": "eslint --fix src/**/*.*",
    "lint:prettier": "prettier -c .",
    "fix:prettier": "prettier -w .",
    "codegen:docs": "ts-node ./src/tools/doc-gen.ts && prettier -w README.md",
    "clean:coverage": "rimraf coverage",
    "pretest": "run-s -s clean",
    "chmod": "chmod +x ./lib/cli.js",
    "prepack": "run-s build chmod"
  },
  "keywords": [],
  "author": "Steve Konves",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/basketry/basketry.git"
  },
  "bugs": {
    "url": "https://github.com/basketry/basketry/issues"
  },
  "homepage": "https://basketry.io",
  "funding": "https://github.com/sponsors/basketry",
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@types/node": "^17.0.10",
    "@types/yargs": "^17.0.10",
    "@typescript-eslint/eslint-plugin": "^5.8.1",
    "@typescript-eslint/parser": "^5.8.1",
    "eslint": "^8.5.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-import": "^2.25.3",
    "jest": "^29.7.0",
    "memfs": "^4.17.2",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.5.1",
    "rimraf": "^3.0.2",
    "ts-jest": "^29.3.4",
    "typescript": "^4.9.5"
  },
  "dependencies": {
    "@basketry/ir": "^0.2.1",
    "case": "^1.6.3",
    "chalk": "^4.1.2",
    "ts-node": "^10.7.0",
    "webpack-merge": "^5.8.0",
    "yargs": "^17.4.0"
  }
}
