lgaticaq/anime-dl

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "anime-dl",
  "version": "4.0.7",
  "description": "Search and get anime video url",
  "main": "src",
  "scripts": {
    "lint": "eslint . --fix",
    "format": "prettier-standard 'src/**/*.js' 'test/**/*.js'",
    "precommit": "lint-staged",
    "pretest": "npm run lint -s && npm run format -s",
    "test": "istanbul cover _mocha",
    "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": "https://github.com/lgaticaq/anime-dl.git"
  },
  "keywords": [
    "anime"
  ],
  "author": "Leonardo Gatica <lgatica@protonmail.com> (https://about.me/lgatica)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/lgaticaq/anime-dl/issues"
  },
  "homepage": "https://github.com/lgaticaq/anime-dl#readme",
  "dependencies": {
    "cheerio": "^1.0.0-rc.2",
    "fuse.js": "^3.0.5"
  },
  "devDependencies": {
    "chai": "4.4.0",
    "eslint": "6.8.0",
    "eslint-config-standard": "12.0.0",
    "eslint-plugin-import": "2.29.1",
    "eslint-plugin-node": "9.2.0",
    "eslint-plugin-promise": "4.3.1",
    "eslint-plugin-standard": "4.1.0",
    "generate-changelog": "1.8.0",
    "husky": "3.1.0",
    "istanbul": "0.4.5",
    "lint-staged": "9.5.0",
    "mocha": "6.2.3",
    "nock": "10.0.6",
    "prettier-standard": "9.1.1"
  },
  "eslintConfig": {
    "extends": "standard",
    "parserOptions": {
      "ecmaVersion": 2017
    },
    "env": {
      "node": true,
      "mocha": true,
      "es6": true
    },
    "rules": {
      "no-console": [
        "error"
      ]
    }
  },
  "eslintIgnore": [
    "coverage",
    "example.js"
  ],
  "lint-staged": {
    "src/**/*.js": [
      "eslint --fix",
      "prettier-standard",
      "git add"
    ],
    "test/**/*.js": [
      "eslint --fix",
      "prettier-standard",
      "git add"
    ]
  },
  "tonicExampleFilename": "example.js",
  "renovate": {
    "automerge": "minor",
    "extends": [
      ":library"
    ]
  }
}