Skip to content

Commit

Permalink
Update dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
lgaticaq committed Mar 18, 2016
1 parent 081cdd5 commit fcf8c38
Showing 1 changed file with 64 additions and 28 deletions.
92 changes: 64 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,41 +3,77 @@
"version": "1.3.1",
"description": "CLI for show and download anime from jkanime.net.",
"main": "lib",
"dependencies": {
"cheerio": "^0.18.0",
"inquirer": "^0.8.0",
"lodash": "^3.5.0",
"urllib": "^2.3.1",
"yargs": "^3.5.3"
},
"devDependencies": {
"coffee-script": "^1.9.1",
"gulp": "^3.8.11",
"gulp-bump": "^0.2.2",
"gulp-coffee": "^2.3.1",
"gulp-coffeelint": "^0.4.0",
"gulp-filter": "^2.0.2",
"gulp-git": "^1.1.0",
"gulp-header": "^1.2.2",
"gulp-load-plugins": "^0.8.1",
"gulp-tag-version": "^1.2.1",
"gulp-util": "^3.0.4"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"prepublish": "npm run build -s",
"prebuild": "npm run lint -s && npm run clean -s",
"build": "babel src --out-dir lib --source-maps",
"lint": "eslint src",
"clean": "rimraf lib",
"pretest": "npm run build -s",
"test": "mocha --compilers js:babel-core/register"
},
"engines": {
"node": ">=0.12"
},
"repository": {
"type": "git",
"url": "https://github.com/leonciokof/anime-dl.git"
"url": "https://github.com/lgaticaq/anime-dl.git"
},
"author": "Leonardo Gatica <[email protected]>",
"keywords": [
"anime"
],
"author": "Leonardo Gatica <[email protected]> (https://about.me/lgatica)",
"license": "MIT",
"bugs": {
"url": "https://github.com/leonciokof/anime-dl/issues"
"url": "https://github.com/lgaticaq/anime-dl/issues"
},
"homepage": "https://github.com/lgaticaq/anime-dl#readme",
"dependencies": {
"cheerio": "^0.20.0",
"request-promise": "^2.0.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"eslint": "2.4.0",
"mocha": "^2.4.5",
"rimraf": "^2.5.2"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true,
"mocha": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
2,
2
],
"linebreak-style": [
2,
"unix"
],
"quotes": [
2,
"single"
],
"semi": [
2,
"always"
]
}
},
"homepage": "https://github.com/leonciokof/anime-dl",
"bin": {
"anime-dl": "lib/index.js"
"babel": {
"presets": [
"es2015"
]
},
"preferGlobal": true
"tonicExampleFilename": "example.js"
}

0 comments on commit fcf8c38

Please sign in to comment.