lgaticaq/hubot-info-rut

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "hubot-info-rut",
  "version": "4.0.5",
  "description": "Un script hubot para obtener a quien pertenece un determinado RUT",
  "main": "src",
  "scripts": {
    "lint": "eslint . --fix",
    "format": "prettier-standard 'src/**/*.js' 'test/**/*.js'",
    "test": "nyc mocha --exit",
    "coverage": "nyc check-coverage --lines 100 --per-file",
    "snyk-protect": "snyk protect"
  },
  "engines": {
    "node": ">=10"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/lgaticaq/hubot-info-rut.git"
  },
  "keywords": [
    "hubot",
    "hubot-scripts",
    "rut",
    "huemul-scripts"
  ],
  "author": "Leonardo Gatica <lgatica@protonmail.com> (https://about.me/lgatica)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/lgaticaq/hubot-info-rut/issues"
  },
  "homepage": "https://github.com/lgaticaq/hubot-info-rut#readme",
  "dependencies": {
    "info-rut": "5.0.4"
  },
  "devDependencies": {
    "@commitlint/cli": "8.3.5",
    "@commitlint/config-conventional": "8.3.4",
    "@eclass/semantic-release-npm-github-config": "3.0.1",
    "@semantic-release/changelog": "5.0.1",
    "@semantic-release/git": "9.0.0",
    "@semantic-release/github": "7.2.2",
    "@semantic-release/npm": "7.1.3",
    "chai": "4.4.0",
    "eslint": "7.32.0",
    "eslint-config-standard": "14.1.1",
    "eslint-plugin-import": "2.29.1",
    "eslint-plugin-node": "11.1.0",
    "eslint-plugin-promise": "4.3.1",
    "eslint-plugin-standard": "4.1.0",
    "hubot-test-helper": "1.9.0",
    "husky": "4.3.8",
    "lint-staged": "10.5.4",
    "mocha": "7.2.0",
    "mock-require": "3.0.3",
    "nyc": "15.1.0",
    "nyc-config-common": "1.0.1",
    "prettier-standard": "16.4.1",
    "semantic-release": "17.4.2",
    "snyk": "1.1267.0"
  },
  "eslintConfig": {
    "extends": "standard",
    "rules": {
      "no-console": [
        "error"
      ]
    }
  },
  "eslintIgnore": [
    "coverage"
  ],
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "lint-staged": {
    "{src,test}/**/*.js": [
      "eslint --fix",
      "prettier-standard",
      "git add"
    ]
  },
  "renovate": {
    "automerge": "minor",
    "extends": [
      "config:js-lib"
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "nyc": {
    "extends": "nyc-config-common"
  },
  "release": {
    "extends": "@eclass/semantic-release-npm-github-config"
  },
  "snyk": true
}