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