diff --git a/Gruntfile.js b/Gruntfile.js index d78bbea20..b60757969 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -50,6 +50,15 @@ module.exports = function(grunt) { 'common/js/xe.min.js': ['common/js/xe.js'] } }, + 'handlebars': { + options: { + sourceMap: true + }, + files: { + 'common/js/plugins/handlebars/handlebars.min.js': ['common/js/plugins/handlebars/handlebars.js'], + 'common/js/plugins/handlebars.runtime/handlebars.runtime.min.js': ['common/js/plugins/handlebars.runtime/handlebars.runtime.js'], + } + }, 'modules': { files: { 'common/js/x.min.js' : ['common/js/x.js'], diff --git a/package.json b/package.json index 153f89011..3f2bd26c2 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,23 @@ { "name": "XpressEngine", + "author": "NAVER", + "license": "GNU LGPL", + "repository": { + "type": "git", + "url": "git://github.com/xpressengine/xe-core.git" + }, + "bugs": { + "url": "https://github.com/xpressengine/xe-core/issues" + }, "devDependencies": { - "grunt": ">0.4.0", - "grunt-contrib-clean": "~0.5.0", - "grunt-contrib-jshint": "~0.7.1", - "grunt-contrib-csslint": "*", - "grunt-contrib-cssmin": "~0.7.0", - "grunt-contrib-uglify": "~0.2.7", - "grunt-contrib-concat": "~0.3.0", - "grunt-phplint": "0.0.5" + "grunt": "^0.4.5", + "grunt-contrib-clean": "^0.5.0", + "grunt-contrib-concat": "^0.3.0", + "grunt-contrib-csslint": "~0.3.0", + "grunt-contrib-cssmin": "^0.7.0", + "grunt-contrib-jshint": "~0.10.0", + "grunt-contrib-uglify": "^0.4.1", + "grunt-phplint": "~0.0.3" }, "main": "Gruntfile.js", "scripts": {