{
  "name": "crossword-builder",
  "version": "0.0.2",
  "description": "Library code to build crossword puzzles one word at a time.",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "lib/**/*"
  ],
  "scripts": {
    "test": "mocha --reporter spec --require ts-node/register 'tests/**/*.test.ts'",
    "build": "tsc",
    "format": "prettier --write \"src/**/*.ts\"",
    "lint": "eslint . --ext .ts",
    "lint-fix": "eslint . --ext .ts --fix",
    "prepare": "npm run build",
    "prepublishOnly": "npm test && npm run lint",
    "preversion": "npm run lint",
    "version": "npm run format && git add -A src",
    "postversion": "git push && git push --tags"
  },
  "author": "Aaron Stockton",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/stocad/crossword-builder.git"
  },
  "keywords": [
    "Crossword"
  ],
  "license": "MIT",
  "dependencies": {
    "@types/chai": "^4.2.22",
    "@types/lodash": "^4.14.177",
    "@types/mocha": "^9.0.0",
    "chai": "^4.3.4",
    "lodash": "^4.17.21",
    "mocha": "^9.1.3",
    "prompt-sync": "^4.2.0",
    "ts-node": "^10.4.0",
    "ts-priority-queue": "^0.1.1"
  },
  "devDependencies": {
    "@babel/eslint-parser": "^7.17.0",
    "@types/prompt-sync": "^4.1.1",
    "@typescript-eslint/eslint-plugin": "^5.11.0",
    "@typescript-eslint/parser": "^5.11.0",
    "babel-eslint": "^10.1.0",
    "eslint": "^7.32.0",
    "eslint-config-standard": "^16.0.3",
    "eslint-plugin-import": "^2.25.4",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^4.0.0",
    "eslint-plugin-promise": "^5.2.0",
    "prettier": "^2.5.1",
    "typescript": "^4.5.5"
  }
}
