UNPKG

anime-dl-cli

Version:

CLI for show and download anime from jkanime.net

79 lines (78 loc) 2.28 kB
{ "name": "anime-dl-cli", "version": "2.2.9", "description": "CLI for show and download anime from jkanime.net", "main": "src", "scripts": { "lint": "eslint . --fix", "format": "prettier-standard 'src/**/*.js' 'test/**/*.js'", "precommit": "lint-staged", "prepublish": "lint-staged", "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" }, "bin": { "anime-dl": "src/index.js" }, "preferGlobal": true, "repository": { "type": "git", "url": "https://github.com/lgaticaq/anime-dl-cli.git" }, "keywords": [ "anime", "cli" ], "author": "Leonardo Gatica <lgatica@protonmail.com> (https://about.me/lgatica)", "license": "MIT", "bugs": { "url": "https://github.com/lgaticaq/anime-dl-cli/issues" }, "homepage": "https://github.com/lgaticaq/anime-dl-cli#readme", "dependencies": { "anime-dl": "^4.0.6", "chalk": "^2.0.1", "commander": "^2.11.0", "ora": "^1.3.0", "update-notifier": "^2.2.0" }, "devDependencies": { "eslint": "^4.2.0", "eslint-config-standard": "^10.2.1", "eslint-plugin-import": "^2.7.0", "eslint-plugin-node": "^5.1.0", "eslint-plugin-promise": "^3.5.0", "eslint-plugin-standard": "^3.0.1", "generate-changelog": "^1.3.0", "husky": "^0.14.3", "lint-staged": "^4.0.1", "prettier-standard": "^6.0.0" }, "eslintConfig": { "extends": "standard", "parserOptions": { "ecmaVersion": 2017 }, "env": { "node": true, "mocha": true, "es6": true } }, "lint-staged": { "src/**/*.js": [ "eslint --fix", "prettier-standard", "git add" ], "test/**/*.js": [ "eslint --fix", "prettier-standard", "git add" ] } }