forked from terryweiss/grunt-template-module
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Terry Weiss
committed
Dec 25, 2012
1 parent
262dc53
commit a445f9a
Showing
11 changed files
with
173 additions
and
239 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,6 @@ tmp | |
.metdata* | ||
*.tgz | ||
.project | ||
.git* | ||
.gitignore | ||
.gitattributes |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,46 @@ | ||
{ | ||
"name" : "grunt-template-module", | ||
"description" : "Precompile Underscore templates to file with option to expose templates from a module.", | ||
"version" : "0.1.0", | ||
"homepage" : "https://github.com/terryweiss/grunt-template-module", | ||
"contributors" : [ | ||
{ | ||
"name" : "Grunt Team", | ||
"url" : "http://gruntjs.com/" | ||
}, | ||
{ | ||
"name" : "Terry Weiss", | ||
"url" : "http://terryweiss.net" | ||
} | ||
], | ||
"repository" : { | ||
"type" : "git", | ||
"url" : "git://github.com/terryweiss/grunt-template-module.git" | ||
}, | ||
"bugs" : { | ||
"url" : "https://github.com/terryweiss/grunt-template-module/issues" | ||
}, | ||
"licenses" : [ | ||
{ | ||
"type" : "MIT", | ||
"url" : "https://github.com/terryweiss/grunt-template-module/blob/master/LICENSE-MIT" | ||
} | ||
], | ||
"main" : "grunt.js", | ||
"engines" : { | ||
"node" : ">= 0.8.0" | ||
}, | ||
"scripts" : { | ||
"test" : "grunt test" | ||
}, | ||
"dependencies" : { | ||
"lodash" : "~1.0.0", | ||
"grunt-lib-contrib" : "~0.3.0", | ||
"underscore" : "~1.4.0", | ||
"ejs" : "~0.8.3", | ||
"grunt-beautify" : "~0.1.1" | ||
}, | ||
"devDependencies" : { | ||
"grunt" : "~0.3.0", | ||
"grunt-contrib-nodeunit" : "~0.1.0" | ||
"name": "grunt-template-module", | ||
"description": "Precompile templates to a file with option to expose templates as a node/commonjs module.", | ||
"version": "0.1.0", | ||
"homepage": "https://github.com/terryweiss/grunt-template-module", | ||
"contributors": [ | ||
|
||
}, | ||
"keywords" : ["gruntplugin", "jst", "ejs", "lodash", "underscore", "templates"] | ||
} | ||
{ | ||
"name": "Terry Weiss", | ||
"url": "http://terryweiss.net" | ||
}, | ||
{ | ||
"name": "Grunt Team", | ||
"url": "http://gruntjs.com/" | ||
}], | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/terryweiss/grunt-template-module.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/terryweiss/grunt-template-module/issues" | ||
}, | ||
"licenses": [{ | ||
"type": "MIT", | ||
"url": "https://github.com/terryweiss/grunt-template-module/blob/master/LICENSE-MIT" | ||
}], | ||
"engines": { | ||
"node": ">=0.8.0" | ||
}, | ||
"scripts": { | ||
"test": "grunt test" | ||
}, | ||
"dependencies": { | ||
"lodash": "~1.0.0", | ||
"grunt-lib-contrib": ">=0.3.0", | ||
"underscore": "~1.4.0", | ||
"ejs": "~0.8.3", | ||
"grunt-beautify": "~0.1.1" | ||
}, | ||
"devDependencies": { | ||
"grunt": ">=0.3.0", | ||
"grunt-contrib-nodeunit": "~0.1.0" | ||
|
||
}, | ||
"keywords": ["gruntplugin", "jst", "ejs", "lodash", "underscore", "templates"] | ||
} |
This file contains 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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.