Merge pull request #1637 from braddunbar/travis

TravisCI integration.
This commit is contained in:
Jeremy Ashkenas
2012-09-10 09:03:34 -07:00
4 changed files with 30 additions and 9 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
raw
*.sw?
.DS_Store
node_modules

3
.travis.yml Normal file
View File

@@ -0,0 +1,3 @@
language: node_js
node_js:
- 0.8

11
grunt.js Normal file
View File

@@ -0,0 +1,11 @@
module.exports = function(grunt) {
grunt.registerTask('default', 'qunit');
grunt.initConfig({
qunit: {
index: 'test/index.html'
}
});
};

View File

@@ -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"
}