Adding package.json and beginnings of gulpfile

This commit is contained in:
Jeff Avallone 2014-11-23 11:52:45 -05:00
parent fc0996d8c2
commit c898f7b5ec
3 changed files with 21 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
node_modules

5
gulpfile.js Normal file
View File

@ -0,0 +1,5 @@
var gulp = require('gulp');
gulp.task('default', function() {
console.log('Default task');
});

15
package.json Normal file
View File

@ -0,0 +1,15 @@
{
"name": "regexper",
"version": "1.0.0",
"description": "Regular expression visualization tool",
"homepage": "http://regexper.com",
"author": {
"name": "Jeffrey Avallone",
"email": "jeff.avallone@gmail.com"
},
"license": "MIT",
"private": true,
"devDependencies": {
"gulp": "^3.8.10"
}
}