lgaticaq/hubot-travis-ci-hook

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "hubot-travis-ci-hook",
  "version": "1.0.0",
  "description": "Clone travis integration with slack",
  "main": "src",
  "scripts": {
    "lint": "eslint . --fix",
    "format": "prettier-standard 'src/**/*.js' 'test/**/*.js'",
    "pretest": "npm run lint -s && npm run format -s",
    "test": "istanbul cover _mocha -- --exit",
    "release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags && npm publish",
    "release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags && npm publish",
    "release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && npm publish"
  },
  "engines": {
    "node": ">=8"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/lgaticaq/hubot-travis-ci-hook.git"
  },
  "keywords": [
    "hubot",
    "hubot-scripts",
    "travis",
    "slack",
    "webhook"
  ],
  "author": "Leonardo Gatica <lgatica@protonmail.com> (https://about.me/lgatica)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/lgaticaq/hubot-travis-ci-hook/issues"
  },
  "homepage": "https://github.com/lgaticaq/hubot-travis-ci-hook#readme",
  "dependencies": {
    "parse-ms": "2.1.0"
  },
  "devDependencies": {
    "chai": "4.3.3",
    "eslint": "5.16.0",
    "eslint-config-standard": "11.0.0",
    "eslint-plugin-import": "2.27.5",
    "eslint-plugin-node": "7.0.1",
    "eslint-plugin-promise": "4.3.1",
    "eslint-plugin-standard": "4.1.0",
    "generate-changelog": "1.8.0",
    "hubot-test-helper": "1.9.0",
    "istanbul": "0.4.5",
    "mocha": "5.2.0",
    "nock": "11.9.1",
    "prettier-standard": "8.0.1"
  },
  "eslintConfig": {
    "extends": "standard",
    "rules": {
      "no-console": [
        "error"
      ]
    }
  },
  "eslintIgnore": [
    "coverage"
  ],
  "renovate": {
    "automerge": "minor",
    "extends": [
      ":library"
    ]
  }
}