{
  "name": "@frontender-magazine/github-sdk",
  "version": "1.2.2",
  "description": "Operations on github",
  "main": "lib/GitHubSDK.js",
  "scripts": {
    "postversion": "git push && git push --tags",
    "version": "npm run build:prod && git add . -A",
    "major": "npm version major && npm publish --tag latest --access public",
    "minor": "npm version minor && npm publish --tag latest --access public",
    "patch": "npm version patch && npm publish --tag latest --access public",
    "dopreminor": "npm version preminor && npm publish --tag next --access public",
    "dopremajor": "npm version premajor && npm publish --tag next --access public",
    "doprepatch": "npm version prepatch && npm publish --tag next --access public",
    "clean": "rimraf docs lib",
    "build": "npm run build:dev",
    "build:prod": "npm run clean && babel source --minified -s true -d lib --ignore __tests__/**,__mocks__/** && npm run build:doc && npm run build:readme",
    "build:dev": "babel source -s true -d lib --ignore __tests__/**,__mocks__/**",
    "build:doc": "documentation build source/*.js -o docs -f html",
    "build:readme": "documentation readme source/*.js --section=\"Documentation\"",
    "lint": "npm-run-all lint:*",
    "lint:js": "eslint --fix ./source --ext .js",
    "test": "jest",
    "precommit": "git add . -A && lint-staged",
    "commitmsg": "commit-msg ${GIT_PARAMS}",
    "watch": "babel source --watch -s true -d lib --ignore __tests__/**,__mocks__/**"
  },
  "lint-staged": {
    "*.{js}": [
      "eslint --color -f stylish --fix",
      "git add . -A",
      "jest --bail --findRelatedTests"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/FrontenderMagazineDevelopment/github-sdk.git"
  },
  "keywords": [
    "Frontender Magazine",
    "GitHub"
  ],
  "author": "Anton Nremtsev <thesilentimp@gmail.com>",
  "license": "CC-BY-4.0",
  "bugs": {
    "url": "https://github.com/FrontenderMagazineDevelopment/github-sdk/issues"
  },
  "homepage": "https://github.com/FrontenderMagazineDevelopment/github-sdk#readme",
  "jest": {
    "coverageDirectory": "./coverage/",
    "collectCoverage": true
  },
  "dependencies": {
    "isomorphic-fetch": "^2.2.1",
    "joi": "^13.1.2",
    "babel-polyfill": "^6.26.0"
  },
  "devDependencies": {
    "@plasma-platform/tm-message-hook": "^1.0.1",
    "babel-cli": "^6.24.1",
    "babel-core": "^6.24.1",
    "babel-eslint": "^7.2.3",
    "babel-jest": "^20.0.3",
    "babel-minify": "^0.2.0",
    "babel-preset-env": "^1.5.2",
    "babel-preset-stage-0": "^6.24.1",
    "documentation": "^5.1.1",
    "eslint": "^3.19.0",
    "eslint-config-airbnb": "^15.0.1",
    "eslint-config-prettier": "^2.9.0",
    "eslint-plugin-import": "^2.7.0",
    "eslint-plugin-jest": "^21.0.2",
    "eslint-plugin-jsx-a11y": "^5.1.1",
    "eslint-plugin-prettier": "^2.6.0",
    "eslint-plugin-react": "^7.7.0",
    "husky": "^0.14.3",
    "jest": "^20.0.4",
    "jest-cli": "^20.0.4",
    "jest-enzyme": "^3.6.1",
    "js-base64": "^2.4.3",
    "lint-staged": "^4.1.3",
    "nock": "^9.0.14",
    "npm-run-all": "^4.1.1",
    "prettier": "^1.6.1",
    "rimraf": "^2.6.2"
  }
}
