Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Feb 11, 2017
1 parent b41958c commit 018cd95
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 37 deletions.
3 changes: 0 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,3 @@ indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
* text=auto
*.js text eol=lf
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
sudo: false
language: node_js
node_js:
- v4
- v5
- v6
- v7
- '6'
- '4'
2 changes: 1 addition & 1 deletion lib/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ var Router = require('./router');
var gens = list(process.argv.slice(2));

/* eslint new-cap: 0, no-extra-parens: 0 */
var tabtab = new (require('tabtab').Commands.default)({
var tabtab = new (require('tabtab').Commands)({
name: 'yo',
completer: 'yo-complete'
});
Expand Down
58 changes: 29 additions & 29 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,27 @@
"name": "yo",
"version": "1.8.5",
"description": "CLI tool for running Yeoman generators",
"license": "BSD-2-Clause",
"repository": "yeoman/yo",
"homepage": "http://yeoman.io",
"author": "Yeoman",
"main": "lib",
"bin": {
"yo": "lib/cli.js",
"yo-complete": "lib/completion/index.js"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "gulp",
"postinstall": "yodoctor",
"postupdate": "yodoctor",
"prepublish": "gulp prepublish"
},
"files": [
"lib"
],
"main": "lib",
"keywords": [
"cli-app",
"cli",
Expand All @@ -25,46 +40,31 @@
"app",
"boilerplate"
],
"license": "BSD-2-Clause",
"repository": "yeoman/yo",
"bin": {
"yo": "lib/cli.js",
"yo-complete": "lib/completion/index.js"
},
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "gulp",
"postinstall": "yodoctor",
"postupdate": "yodoctor",
"prepublish": "gulp prepublish"
},
"dependencies": {
"async": "^2.1.4",
"chalk": "^1.0.0",
"cli-list": "^0.1.1",
"configstore": "^1.0.0",
"cross-spawn": "^3.0.1",
"figures": "^1.3.5",
"cli-list": "^0.2.0",
"configstore": "^2.1.0",
"cross-spawn": "^5.0.1",
"figures": "^2.0.0",
"fullname": "^3.2.0",
"got": "^6.7.1",
"humanize-string": "^1.0.0",
"inquirer": "^3.0.1",
"insight": "^0.7.0",
"insight": "^0.8.4",
"lodash": "^4.17.4",
"meow": "^3.0.0",
"npm-keyword": "^4.1.0",
"opn": "^3.0.2",
"opn": "^4.0.2",
"package-json": "^2.1.0",
"parse-help": "^0.1.1",
"read-pkg-up": "^2.0.0",
"root-check": "^1.0.0",
"sort-on": "^1.0.0",
"string-length": "^1.0.0",
"tabtab": "^1.3.0",
"tabtab": "^2.2.2",
"titleize": "^1.0.0",
"update-notifier": "^0.6.0",
"update-notifier": "^1.0.3",
"user-home": "^2.0.0",
"yeoman-character": "^1.0.0",
"yeoman-doctor": "^2.0.0",
Expand All @@ -74,15 +74,15 @@
"devDependencies": {
"gulp": "^3.6.0",
"gulp-coveralls": "^0.1.0",
"gulp-eslint": "^2.0.0",
"gulp-eslint": "^3.0.1",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-istanbul": "^1.0.0",
"gulp-mocha": "^2.0.0",
"gulp-mocha": "^3.0.1",
"gulp-nsp": "^2.1.0",
"gulp-plumber": "^1.0.0",
"mocha": "^2.1.0",
"mockery": "^1.4.0",
"nock": "^8.0.0",
"mocha": "^3.2.0",
"mockery": "^2.0.0",
"nock": "^9.0.5",
"nsp": "^2.2.0",
"proxyquire": "^1.0.1",
"registry-url": "^3.0.0",
Expand Down

0 comments on commit 018cd95

Please sign in to comment.