Skip to content

Commit

Permalink
feat: upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dignifiedquire committed Jul 31, 2016
1 parent 6fdec24 commit 80eb572
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 29 deletions.
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,23 @@
"license": "MIT",
"dependencies": {
"args-parser": "^1.0.2",
"babel-core": "^6.10.4",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"brfs": "^1.4.3",
"chalk": "^1.1.3",
"coveralls": "^2.11.9",
"eslint": "^3.0.1",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.3.2",
"coveralls": "^2.11.12",
"eslint": "^3.2.0",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-standard": "^2.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-bump": "^2.2.0",
"gulp-eslint": "^3.0.1",
"gulp-filter": "^4.0.0",
"gulp-git": "^1.8.0",
"gulp-git": "^1.10.0",
"gulp-load-plugins": "1.2.4",
"gulp-load-tasks": "^0.8.4",
"gulp-rename": "^1.2.2",
Expand All @@ -53,26 +53,26 @@
"gulp-util": "^3.0.7",
"https-browserify": "0.0.1",
"json-loader": "^0.5.4",
"karma": "^1.1.0",
"karma": "^1.1.2",
"karma-chrome-launcher": "^1.0.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha-own-reporter": "^1.1.2",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"lodash": "^4.13.1",
"lodash": "^4.14.1",
"mocha": "^2.5.3",
"phantomjs-prebuilt": "^2.1.7",
"phantomjs-prebuilt": "^2.1.9",
"pretty-hrtime": "^1.0.2",
"require-dir": "^0.3.0",
"rimraf": "^2.5.3",
"rimraf": "^2.5.4",
"run-sequence": "^1.2.2",
"semver": "^5.2.0",
"stream-http": "^2.3.0",
"semver": "^5.3.0",
"stream-http": "^2.3.1",
"transform-loader": "^0.2.3",
"webpack": "^2.1.0-beta.15",
"webpack-merge": "^0.14.0"
"webpack": "^2.1.0-beta.20",
"webpack-merge": "^0.14.1"
},
"repository": {
"type": "git",
Expand All @@ -87,4 +87,4 @@
"JGAntunes <j.goncalo.antunes@gmail.com>",
"greenkeeperio-bot <support@greenkeeper.io>"
]
}
}
29 changes: 15 additions & 14 deletions src/gulp-contributors.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,21 @@ module.exports = function (opts) {
return cb(new Error('git log empty'))
}

const gitContribs = _(stdout.replace(/"/mig, '').split('\n'))
.compact()
.map((line) => {
const pair = line.toString().split('|')

return {
name: pair[0],
email: pair[1]
}
})
.uniqBy('email')
.sortBy('name')
.map((val) => `${val.name} <${val.email}>`)
.value()
const gitContribs = _(stdout.replace(/"/mig, '')
.split('\n'))
.compact()
.map((line) => {
const pair = line.toString().split('|')

return {
name: pair[0],
email: pair[1]
}
})
.uniqBy('email')
.sortBy('name')
.map((val) => `${val.name} <${val.email}>`)
.value()

json.contributors = gitContribs
file.contents = new Buffer(JSON.stringify(json, null, 2))
Expand Down

0 comments on commit 80eb572

Please sign in to comment.