{
  "name": "commander-spellbook",
  "version": "0.13.1",
  "description": "A wrapper for parsing the commander spellbook api.",
  "main": "dist/index.js",
  "files": [
    "dist"
  ],
  "scripts": {
    "prepublishOnly": "npm run typescript",
    "pretypescript": "rimraf dist && npm run pretty",
    "typescript": "tsc --declaration --project tsconfig.production.json",
    "predemo": "npm run build",
    "demo": "http-server docs -p 3001",
    "demo:dev": "npm run demo & npm run build:watch",
    "lint": "eslint --ext ts .",
    "pretty": "prettier --write .",
    "posttest": "npm run lint",
    "test": "jest",
    "test:unit": "jest test/unit/",
    "test:integration": "jest test/integration/",
    "test:publishing": "jest test/publishing/",
    "test:all": "npm run lint && npm run test:unit && npm run test:integration && npm run test:publishing"
  },
  "keywords": [
    "commander spellbook",
    "commander",
    "edh",
    "magic the gathering",
    "mtg"
  ],
  "author": "blade <blade@crookedneighbor.com>",
  "license": "MIT",
  "devDependencies": {
    "@types/jest": "^26.0.20",
    "@types/superagent": "^4.1.10",
    "@typescript-eslint/eslint-plugin": "^4.14.1",
    "@typescript-eslint/parser": "^4.14.1",
    "check-ecmascript-version-compatibility": "^0.1.1",
    "eslint": "^7.18.0",
    "eslint-config-prettier": "^7.2.0",
    "eslint-plugin-prettier": "^3.3.1",
    "jest": "^26.6.3",
    "prettier": "^2.2.1",
    "rimraf": "^3.0.2",
    "ts-jest": "^26.5.0",
    "ts-loader": "^8.0.14",
    "typescript": "^4.1.3",
    "webpack": "^5.19.0"
  },
  "dependencies": {
    "scryfall-client": "^0.18.6",
    "superagent": "^6.1.0"
  },
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "jsdom",
    "testTimeout": 10000,
    "restoreMocks": true,
    "clearMocks": true,
    "setupFilesAfterEnv": [
      "./test/helpers/setup.ts"
    ]
  }
}
