This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "helloworld", | |
| "version": "0.0.0", | |
| "description": "Welcome to your Appcelerator Titanium Mobile Project", | |
| "main": "Resources/app.js", | |
| "scripts": { | |
| "test": "tishadow spec" | |
| }, | |
| "author": "Shinosuke Ooyama", | |
| "license": "MIT", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = (grunt) -> | |
| 'use strict' | |
| # Grunt Initialize | |
| grunt.initConfig | |
| pkg: grunt.file.readJSON('package.json') | |
| coffee: | |
| options: | |
| bare: true | |
| souceMap: true |
NewerOlder