{
  "name": "atcoder-cli",
  "version": "2.2.0",
  "description": "AtCoder command line tools",
  "keywords": [
    "atcoder",
    "competitive-programming",
    "cli"
  ],
  "author": "Tatamo",
  "license": "BSD-3-Clause",
  "repository": {
    "type": "git",
    "url": "https://github.com/Tatamo/atcoder-cli.git"
  },
  "bin": {
    "acc": "bin/index.js"
  },
  "files": [
    "bin/",
    "schema/",
    "package.json",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "test": "jest",
    "test-w": "jest --watchAll",
    "build": "npm run clean && tsc && webpack --mode production",
    "clean": "rimraf bin src/**/*.{js,d.ts}",
    "watch:tsc": "tsc --watch",
    "watch:webpack": "webpack --mode development --watch",
    "watch": "tsc && npm-run-all -p watch:*",
    "prepare": "npm run build"
  },
  "dependencies": {
    "ajv": "^6.10.2",
    "axios": "^0.21.1",
    "commander": "^3.0.1",
    "conf": "^5.0.0",
    "fs-extra": "^8.1.0",
    "inquirer": "^7.0.0",
    "jsdom": "^15.1.1",
    "mkdirp": "^0.5.1",
    "query-string": "^6.8.3",
    "typesafe-di": "^0.1.0",
    "update-notifier": "^4.1.0"
  },
  "devDependencies": {
    "@types/fs-extra": "^8.0.0",
    "@types/inquirer": "6.5.0",
    "@types/jest": "^24.0.18",
    "@types/jsdom": "^12.2.4",
    "@types/mkdirp": "^0.5.2",
    "@types/mock-fs": "^3.6.30",
    "@types/node": "^12.7.5",
    "@types/update-notifier": "^4.1.0",
    "jest": "^24.9.0",
    "mock-fs": "^5.1.1",
    "npm-run-all": "^4.1.5",
    "rimraf": "^3.0.0",
    "ts-jest": "^24.0.2",
    "typescript": "^3.6.3",
    "webpack": "^4.39.3",
    "webpack-cli": "^3.3.8",
    "webpack-node-externals": "^1.7.2"
  },
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node"
  }
}
