Skip to content

Commit 018cd95

Browse files
committedFeb 11, 2017
Bump dependencies
1 parent b41958c commit 018cd95

File tree

5 files changed

+33
-37
lines changed

5 files changed

+33
-37
lines changed
 

‎.editorconfig

-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,3 @@ indent_size = 2
66
charset = utf-8
77
trim_trailing_whitespace = true
88
insert_final_newline = true
9-
10-
[*.md]
11-
trim_trailing_whitespace = false

‎.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
* text=auto
2+
*.js text eol=lf

‎.travis.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
sudo: false
22
language: node_js
33
node_js:
4-
- v4
5-
- v5
6-
- v6
7-
- v7
4+
- '6'
5+
- '4'

‎lib/cli.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ var Router = require('./router');
1515
var gens = list(process.argv.slice(2));
1616

1717
/* eslint new-cap: 0, no-extra-parens: 0 */
18-
var tabtab = new (require('tabtab').Commands.default)({
18+
var tabtab = new (require('tabtab').Commands)({
1919
name: 'yo',
2020
completer: 'yo-complete'
2121
});

‎package.json

+29-29
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,27 @@
22
"name": "yo",
33
"version": "1.8.5",
44
"description": "CLI tool for running Yeoman generators",
5+
"license": "BSD-2-Clause",
6+
"repository": "yeoman/yo",
57
"homepage": "http://yeoman.io",
68
"author": "Yeoman",
9+
"main": "lib",
10+
"bin": {
11+
"yo": "lib/cli.js",
12+
"yo-complete": "lib/completion/index.js"
13+
},
14+
"engines": {
15+
"node": ">=4"
16+
},
17+
"scripts": {
18+
"test": "gulp",
19+
"postinstall": "yodoctor",
20+
"postupdate": "yodoctor",
21+
"prepublish": "gulp prepublish"
22+
},
723
"files": [
824
"lib"
925
],
10-
"main": "lib",
1126
"keywords": [
1227
"cli-app",
1328
"cli",
@@ -25,46 +40,31 @@
2540
"app",
2641
"boilerplate"
2742
],
28-
"license": "BSD-2-Clause",
29-
"repository": "yeoman/yo",
30-
"bin": {
31-
"yo": "lib/cli.js",
32-
"yo-complete": "lib/completion/index.js"
33-
},
34-
"engines": {
35-
"node": ">=4.0.0"
36-
},
37-
"scripts": {
38-
"test": "gulp",
39-
"postinstall": "yodoctor",
40-
"postupdate": "yodoctor",
41-
"prepublish": "gulp prepublish"
42-
},
4343
"dependencies": {
4444
"async": "^2.1.4",
4545
"chalk": "^1.0.0",
46-
"cli-list": "^0.1.1",
47-
"configstore": "^1.0.0",
48-
"cross-spawn": "^3.0.1",
49-
"figures": "^1.3.5",
46+
"cli-list": "^0.2.0",
47+
"configstore": "^2.1.0",
48+
"cross-spawn": "^5.0.1",
49+
"figures": "^2.0.0",
5050
"fullname": "^3.2.0",
5151
"got": "^6.7.1",
5252
"humanize-string": "^1.0.0",
5353
"inquirer": "^3.0.1",
54-
"insight": "^0.7.0",
54+
"insight": "^0.8.4",
5555
"lodash": "^4.17.4",
5656
"meow": "^3.0.0",
5757
"npm-keyword": "^4.1.0",
58-
"opn": "^3.0.2",
58+
"opn": "^4.0.2",
5959
"package-json": "^2.1.0",
6060
"parse-help": "^0.1.1",
6161
"read-pkg-up": "^2.0.0",
6262
"root-check": "^1.0.0",
6363
"sort-on": "^1.0.0",
6464
"string-length": "^1.0.0",
65-
"tabtab": "^1.3.0",
65+
"tabtab": "^2.2.2",
6666
"titleize": "^1.0.0",
67-
"update-notifier": "^0.6.0",
67+
"update-notifier": "^1.0.3",
6868
"user-home": "^2.0.0",
6969
"yeoman-character": "^1.0.0",
7070
"yeoman-doctor": "^2.0.0",
@@ -74,15 +74,15 @@
7474
"devDependencies": {
7575
"gulp": "^3.6.0",
7676
"gulp-coveralls": "^0.1.0",
77-
"gulp-eslint": "^2.0.0",
77+
"gulp-eslint": "^3.0.1",
7878
"gulp-exclude-gitignore": "^1.0.0",
7979
"gulp-istanbul": "^1.0.0",
80-
"gulp-mocha": "^2.0.0",
80+
"gulp-mocha": "^3.0.1",
8181
"gulp-nsp": "^2.1.0",
8282
"gulp-plumber": "^1.0.0",
83-
"mocha": "^2.1.0",
84-
"mockery": "^1.4.0",
85-
"nock": "^8.0.0",
83+
"mocha": "^3.2.0",
84+
"mockery": "^2.0.0",
85+
"nock": "^9.0.5",
8686
"nsp": "^2.2.0",
8787
"proxyquire": "^1.0.1",
8888
"registry-url": "^3.0.0",

0 commit comments

Comments
 (0)
Please sign in to comment.