Skip to content

Commit

Permalink
upgrade devDependencies, run update
Browse files Browse the repository at this point in the history
  • Loading branch information
jonschlinkert committed Nov 1, 2017
1 parent ec38e82 commit bd5041e
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 32 deletions.
9 changes: 5 additions & 4 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# http://editorconfig.org/
root = true

[*]
indent_style = space
end_of_line = lf
charset = utf-8
end_of_line = lf
indent_size = 2
trim_trailing_whitespace = true
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

[{**/{actual,fixtures,expected,templates}/**,*.md}]
trim_trailing_whitespace = false
insert_final_newline = false
insert_final_newline = false
5 changes: 0 additions & 5 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
{
"ecmaFeatures": {
"modules": true,
"experimentalObjectRestSpread": true
},

"env": {
"browser": false,
"es6": true,
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# always ignore files
*.DS_Store
.idea
*.sublime-*

# test related, or directories generated by tests
Expand All @@ -25,3 +26,4 @@ vendor
temp
tmp
TODO.md
package-lock.json
8 changes: 3 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@ os:
language: node_js
node_js:
- node
- '8'
- '7'
- '6'
- '5'
- '4'
- '0.12'
- '0.10'
matrix:
allow_failures:
- node_js: '4'
- node_js: '0.12'
- node_js: '0.10'
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015-2016, Jon Schlinkert.
Copyright (c) 2015-2017, Jon Schlinkert.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*!
* parse-github-url <https://github.com/jonschlinkert/parse-github-url>
*
* Copyright (c) 2015, Jon Schlinkert.
* Licensed under the MIT License.
* Copyright (c) 2015-2017, Jon Schlinkert.
* Released under the MIT License.
*/

'use strict';
Expand Down
38 changes: 23 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@
"version": "1.0.0",
"homepage": "https://github.com/jonschlinkert/parse-github-url",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Ben Meiri (https://github.com/bmeiri)",
"Brian Woodward (https://twitter.com/doowb)",
"Jeremy Ruppel (jeremyruppel.github.io)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)",
"Pete Cook (cookpete.com)",
"Philipp Alferov (https://github.com/alferov)",
"William Bartholomew (https://willbar.com)"
],
"repository": "jonschlinkert/parse-github-url",
"bugs": {
"url": "https://github.com/jonschlinkert/parse-github-url/issues"
Expand All @@ -20,9 +29,9 @@
"test": "mocha"
},
"devDependencies": {
"gulp-format-md": "^0.1.7",
"mocha": "^2.4.5",
"verb-generate-readme": "^0.2.1"
"gulp-format-md": "^1.0.0",
"mocha": "^3.2.0",
"verb-generate-readme": "^0.6.0"
},
"keywords": [
"branch",
Expand All @@ -39,26 +48,25 @@
],
"verb": {
"run": true,
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"github-short-url-regex",
"is-git-url",
"parse-github-short-url"
"git-add-remote",
"git-branch",
"git-repo-name",
"git-username",
"is-git-url"
]
},
"toc": false,
"lint": {
"reflinks": true
},
"layout": "default",
"tasks": [
"readme"
],
"reflinks": [
"verb"
]
}
}
}

0 comments on commit bd5041e

Please sign in to comment.