Adding package.json and beginnings of gulpfile
This commit is contained in:
@@ -0,0 +1 @@
|
|||||||
|
node_modules
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
var gulp = require('gulp');
|
||||||
|
|
||||||
|
gulp.task('default', function() {
|
||||||
|
console.log('Default task');
|
||||||
|
});
|
||||||
@@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user