Last active
August 29, 2015 14:06
-
-
Save joshgreen/06cabf4b6058bac17ebd to your computer and use it in GitHub Desktop.
Humans generator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'), | |
gutil = require('gulp-util'), | |
humans = require('humans-generator'); | |
gulp.task('humans', function() { | |
humans({ | |
'team': { | |
'Hayden Bleasel': { | |
'Twitter': '@haydenbleasel', | |
'Email': '[email protected]', | |
'Country': 'Australia' | |
} | |
}, | |
'thanks': [ | |
'Hayden Bleasel (@haydenbleasel on Twitter) <[email protected]>' | |
], | |
'site': { | |
'Standards': 'HTML5, CSS3', | |
'Components': 'jQuery, Normalize.css', | |
'Software': 'Atom' | |
}, | |
'note': 'Built with love by Hayden Bleasel.' | |
}); | |
}); | |
// Default task | |
gulp.task('default', ['humans']); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment