Skip to content

Instantly share code, notes, and snippets.

View mattd's full-sized avatar

Matt Dawson mattd

  • WillowTree Apps
  • Charlottesville, VA
View GitHub Profile
{
"author": "",
"name": "app",
"version": "0.1.0",
"dependencies": {
"grunt": "~0.4.0a",
"grunt-contrib-clean": "~0.3.0",
"grunt-contrib-concat": "~0.1.0",
"grunt-contrib-connect": "~0.1.0",
"grunt-contrib-handlebars": "~0.3.0",
/*global module:false*/
module.exports = function(grunt) {
grunt.initConfig({
sass: {
dist: {
options: {
compass: true
},
files: {
'dist/build/main.css': 'app/styles/sass/main.scss'
{
"author": "Matt Dawson <[email protected]>",
"name": "app",
"version": "0.1.0",
"dependencies": {
"grunt": "~0.4.0a",
"grunt-contrib-clean": "~0.4.0a",
"grunt-contrib-compass": "~0.1.0",
"grunt-contrib-concat": "~0.1.0",
"grunt-contrib-connect": "~0.1.0",
jasmine: {
requirejs: {
//src: 'app/scripts/**/*.js',
src: [],
options: {
//specs: 'test/spec/**/*.js',
specs: [],
host: 'http://127.0.0.1:<%= connect.port %>',
template: 'requirejs',
templateOptions: {
/*global module:false*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
// Metadata.
pkg: grunt.file.readJSON('package.json'),
banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %>\n' +
'<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' +
/*global module:false*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
// Metadata.
pkg: grunt.file.readJSON('package.json'),
banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %>\n' +
'<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' +
/*global module:false*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
// Metadata.
pkg: grunt.file.readJSON('package.json'),
banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %>\n' +
'<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' +
{
"author": {
"name": "WillowTree Apps"
},
"name": "app",
"version": "0.1.0",
"dependencies": {
"grunt": "~0.4.0a",
"grunt-contrib-clean": "~0.4.0a",
"grunt-contrib-compass": "~0.1.0",
define([
'vent',
'marionette',
'collections/widget',
'layouts/index',
'views/widget/collection'
], function (
vent,
Marionette,
WidgetCollection,
define([
'marionette',
'routers/index',
'controllers/index'
], function (Marionette, IndexRouter, IndexController) {
"use strict";
var app = new Marionette.Application();
app.addRegions({