mirror of
https://github.com/jashkenas/backbone.git
synced 2026-04-30 03:00:06 -04:00
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,3 +1,4 @@
|
||||
raw
|
||||
*.sw?
|
||||
.DS_Store
|
||||
node_modules
|
||||
|
||||
3
.travis.yml
Normal file
3
.travis.yml
Normal file
@@ -0,0 +1,3 @@
|
||||
language: node_js
|
||||
node_js:
|
||||
- 0.8
|
||||
11
grunt.js
Normal file
11
grunt.js
Normal file
@@ -0,0 +1,11 @@
|
||||
module.exports = function(grunt) {
|
||||
|
||||
grunt.registerTask('default', 'qunit');
|
||||
|
||||
grunt.initConfig({
|
||||
qunit: {
|
||||
index: 'test/index.html'
|
||||
}
|
||||
});
|
||||
|
||||
};
|
||||
24
package.json
24
package.json
@@ -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"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user