Skip to content

Commit fcf8c38

Browse files
committed
Update dependencies.
1 parent 081cdd5 commit fcf8c38

File tree

1 file changed

+64
-28
lines changed

1 file changed

+64
-28
lines changed

package.json

+64-28
Original file line numberDiff line numberDiff line change
@@ -3,41 +3,77 @@
33
"version": "1.3.1",
44
"description": "CLI for show and download anime from jkanime.net.",
55
"main": "lib",
6-
"dependencies": {
7-
"cheerio": "^0.18.0",
8-
"inquirer": "^0.8.0",
9-
"lodash": "^3.5.0",
10-
"urllib": "^2.3.1",
11-
"yargs": "^3.5.3"
12-
},
13-
"devDependencies": {
14-
"coffee-script": "^1.9.1",
15-
"gulp": "^3.8.11",
16-
"gulp-bump": "^0.2.2",
17-
"gulp-coffee": "^2.3.1",
18-
"gulp-coffeelint": "^0.4.0",
19-
"gulp-filter": "^2.0.2",
20-
"gulp-git": "^1.1.0",
21-
"gulp-header": "^1.2.2",
22-
"gulp-load-plugins": "^0.8.1",
23-
"gulp-tag-version": "^1.2.1",
24-
"gulp-util": "^3.0.4"
25-
},
266
"scripts": {
27-
"test": "echo \"Error: no test specified\" && exit 1"
7+
"prepublish": "npm run build -s",
8+
"prebuild": "npm run lint -s && npm run clean -s",
9+
"build": "babel src --out-dir lib --source-maps",
10+
"lint": "eslint src",
11+
"clean": "rimraf lib",
12+
"pretest": "npm run build -s",
13+
"test": "mocha --compilers js:babel-core/register"
14+
},
15+
"engines": {
16+
"node": ">=0.12"
2817
},
2918
"repository": {
3019
"type": "git",
31-
"url": "https://github.com/leonciokof/anime-dl.git"
20+
"url": "https://github.com/lgaticaq/anime-dl.git"
3221
},
33-
"author": "Leonardo Gatica <[email protected]>",
22+
"keywords": [
23+
"anime"
24+
],
25+
"author": "Leonardo Gatica <[email protected]> (https://about.me/lgatica)",
3426
"license": "MIT",
3527
"bugs": {
36-
"url": "https://github.com/leonciokof/anime-dl/issues"
28+
"url": "https://github.com/lgaticaq/anime-dl/issues"
29+
},
30+
"homepage": "https://github.com/lgaticaq/anime-dl#readme",
31+
"dependencies": {
32+
"cheerio": "^0.20.0",
33+
"request-promise": "^2.0.1"
34+
},
35+
"devDependencies": {
36+
"babel-cli": "^6.6.5",
37+
"babel-core": "^6.7.2",
38+
"babel-preset-es2015": "^6.6.0",
39+
"chai": "^3.5.0",
40+
"eslint": "2.4.0",
41+
"mocha": "^2.4.5",
42+
"rimraf": "^2.5.2"
43+
},
44+
"eslintConfig": {
45+
"env": {
46+
"es6": true,
47+
"node": true,
48+
"mocha": true
49+
},
50+
"extends": "eslint:recommended",
51+
"parserOptions": {
52+
"sourceType": "module"
53+
},
54+
"rules": {
55+
"indent": [
56+
2,
57+
2
58+
],
59+
"linebreak-style": [
60+
2,
61+
"unix"
62+
],
63+
"quotes": [
64+
2,
65+
"single"
66+
],
67+
"semi": [
68+
2,
69+
"always"
70+
]
71+
}
3772
},
38-
"homepage": "https://github.com/leonciokof/anime-dl",
39-
"bin": {
40-
"anime-dl": "lib/index.js"
73+
"babel": {
74+
"presets": [
75+
"es2015"
76+
]
4177
},
42-
"preferGlobal": true
78+
"tonicExampleFilename": "example.js"
4379
}

0 commit comments

Comments
 (0)