{
  "name": "clash-royale-api",
  "version": "1.3.1",
  "description": "A Javascript wrapper for Oficial Clash Royale API",
  "main": "dist/index.js",
  "scripts": {
    "start": "nodemon --exec babel-node src/index.js",
    "prebuild": "rimraf dist",
    "build": "babel src --out-dir dist --ignore */__mocks__/*,*.test.js",
    "serve": "node dist/index.js",
    "test": "jest",
    "test:watch": "npm test -- --watch",
    "test:coverage": "npm test -- --coverage",
    "travis-deploy-once": "travis-deploy-once",
    "semantic-release": "semantic-release",
    "commit": "git-cz",
    "prepublishOnly": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/chgasparoto/clash-royale-api.git"
  },
  "keywords": [
    "clash royale",
    "api"
  ],
  "files": [
    "dist",
    "README.md"
  ],
  "author": "Cleber Gasparoto <chgasparoto@gmail.com> (https://github.com/chgasparoto)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/chgasparoto/clash-royale-api/issues"
  },
  "homepage": "https://github.com/chgasparoto/clash-royale-api#readme",
  "dependencies": {
    "axios": "^0.18.0",
    "dotenv": "^6.2.0",
    "query-string": "^6.2.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.2.3",
    "@babel/core": "^7.3.4",
    "@babel/node": "^7.2.2",
    "@babel/preset-env": "^7.3.4",
    "babel-plugin-add-module-exports": "1.0.0",
    "cz-conventional-changelog": "2.1.0",
    "husky": "1.3.1",
    "jest": "^24.1.0",
    "jest-extended": "^0.11.1",
    "nodemon": "^1.18.10",
    "rimraf": "2.6.3",
    "semantic-release": "15.13.3",
    "standard": "^12.0.1"
  },
  "jest": {
    "testEnvironment": "node",
    "setupFilesAfterEnv": [
      "jest-extended"
    ]
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm test"
    }
  }
}
