Initial Commmit:

Gulp Tasks for
* Copy libs to public folder
* Source Uglyfy + Copy
* Zip
This commit is contained in:
Indrajith K L
2018-08-12 02:37:22 +05:30
commit ddbf11efa3
7 changed files with 5919 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "js13kgames-template",
"version": "1.0.0",
"description": "A barebone template aimed for js13kgames",
"scripts": {
"start": "./node_modules/.bin/gulp serve",
"release": "./node_modules/.bin/gulp zipFiles"
},
"author": "Indrajith K L",
"license": "MIT",
"dependencies": {
"kontra": "^4.0.0",
"tinymusic": "^1.0.0"
},
"devDependencies": {
"browser-sync": "^2.24.6",
"gulp": "^3.9.1",
"gulp-size": "^3.0.0",
"gulp-uglify": "^3.0.1",
"gulp-vinyl-zip": "^2.1.0"
}
}