forked from jashkenas/backbone
-
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
1 parent
3b08fb8
commit fcd3898
Showing
4 changed files
with
30 additions
and
9 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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
raw | ||
*.sw? | ||
.DS_Store | ||
node_modules |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
language: node_js | ||
node_js: | ||
- 0.8 |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
module.exports = function(grunt) { | ||
|
||
grunt.registerTask('default', 'qunit'); | ||
|
||
grunt.initConfig({ | ||
qunit: { | ||
index: 'test/index.html' | ||
} | ||
}); | ||
|
||
}; |
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,12 +1,18 @@ | ||
{ | ||
"name" : "backbone", | ||
"description" : "Give your JS App some Backbone with Models, Views, Collections, and Events.", | ||
"url" : "http://backbonejs.org", | ||
"keywords" : ["util", "functional", "server", "client", "browser"], | ||
"author" : "Jeremy Ashkenas <jeremy@documentcloud.org>", | ||
"dependencies" : { | ||
"underscore" : ">=1.3.1" | ||
"name" : "backbone", | ||
"description" : "Give your JS App some Backbone with Models, Views, Collections, and Events.", | ||
"url" : "http://backbonejs.org", | ||
"keywords" : ["util", "functional", "server", "client", "browser"], | ||
"author" : "Jeremy Ashkenas <jeremy@documentcloud.org>", | ||
"dependencies" : { | ||
"underscore": ">=1.3.3" | ||
}, | ||
"main" : "backbone.js", | ||
"version" : "0.9.2" | ||
"devDependencies": { | ||
"grunt": "~0.3.15" | ||
}, | ||
"scripts" : { | ||
"test": "./node_modules/grunt/bin/grunt" | ||
}, | ||
"main" : "backbone.js", | ||
"version" : "0.9.2" | ||
} |