lgaticaq/hubot-cne

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "hubot-cne",
  "version": "2.0.1",
  "description": "A hubot script to get fuel price in Chile from cne api",
  "main": "src",
  "scripts": {
    "lint": "eslint --fix 'src/**/*.js' 'test/**/*.js'",
    "format": "prettier-standard 'src/**/*.js' 'test/**/*.js'",
    "pretest": "npm run lint -s && npm run format -s",
    "test": "mocha",
    "posttest": "istanbul report text-summary lcov",
    "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": ">=6"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/lgaticaq/hubot-cne.git"
  },
  "keywords": [
    "cne",
    "fuel",
    "api",
    "hubot",
    "hubot-scripts"
  ],
  "author": "Leonardo Gatica <lgatica@protonmail.com> (https://about.me/lgatica)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/lgaticaq/hubot-cne/issues"
  },
  "homepage": "https://github.com/lgaticaq/hubot-cne#readme",
  "dependencies": {
    "cne": "^1.0.1"
  },
  "devDependencies": {
    "chai": "4.3.4",
    "coffee-script": "1.12.7",
    "eslint": "4.19.1",
    "eslint-config-standard": "11.0.0",
    "eslint-plugin-import": "2.22.1",
    "eslint-plugin-node": "6.0.1",
    "eslint-plugin-promise": "3.8.0",
    "eslint-plugin-standard": "3.1.0",
    "generate-changelog": "1.8.0",
    "hubot-test-helper": "1.9.0",
    "istanbul": "0.4.5",
    "mocha": "5.2.0",
    "prettier-standard": "8.0.1",
    "proxyquire": "1.8.0"
  },
  "eslintConfig": {
    "extends": "standard",
    "env": {
      "mocha": true
    },
    "rules": {
      "no-console": [
        "error"
      ]
    }
  },
  "eslintIgnore": [
    "coverage"
  ]
}