-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 2.22 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"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 <[email protected]> (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": "5.16.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-promise": "3.8.0",
"eslint-plugin-standard": "4.1.0",
"generate-changelog": "1.8.0",
"husky": "0.14.3",
"lint-staged": "7.3.0",
"prettier-standard": "8.0.1"
},
"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"
]
}
}