-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made into Jam module, changed directory structure.
- Loading branch information
1 parent
3967949
commit 15d3822
Showing
4 changed files
with
44 additions
and
24 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
File renamed without changes.
File renamed without changes.
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,24 +1,44 @@ | ||
{ | ||
"name": "backbone-query" | ||
, "description": "Lightweight Query API for Backbone Collections" | ||
, "version": "0.2.0" | ||
, "author": "Dave Tonge <[email protected]> (https://github.com/davidgtonge)" | ||
, "tags": ["backbone", "underscore", "mongo", "query"] | ||
, "main": "./lib/backbone-query" | ||
, "repository": { | ||
"type": "git" | ||
, "url": "https://[email protected]/davidgtonge/backbone_query.git" | ||
"name": "backbone-query", | ||
"description": "Lightweight Query API for Backbone Collections", | ||
"version": "0.2.3", | ||
"author": "Dave Tonge <[email protected]> (https://github.com/davidgtonge)", | ||
"tags": [ | ||
"backbone", | ||
"underscore", | ||
"mongo", | ||
"query" | ||
], | ||
"main": "./backbone-query", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://[email protected]/davidgtonge/backbone_query.git" | ||
}, | ||
"dependencies": { | ||
"backbone": ">=0.5.x", | ||
"underscore": ">=1.1.x" | ||
}, | ||
"devDependencies": { | ||
"coffee-script": ">=1.x.x", | ||
"mocha": "", | ||
"uglify-js": "1.2.2" | ||
}, | ||
"jam": { | ||
"dependencies": { | ||
"underscore": "*", | ||
"backbone": "*", | ||
"jquery": "*" | ||
}, | ||
"include": ["backbone-query.js"], | ||
|
||
"main": "backbone-query.js", | ||
|
||
"shim": { | ||
"deps": ["jquery", "backbone", "underscore"], | ||
"exports": "Backbone.QueryCollection" | ||
} | ||
}, | ||
"scripts": { | ||
"test": "mocha" | ||
} | ||
, "dependencies": { | ||
"backbone": ">=0.5.x" | ||
, "underscore": ">=1.1.x" | ||
} | ||
, "devDependencies": { | ||
"coffee-script" : ">=1.x.x" | ||
,"mocha": "" | ||
,"uglify-js": "1.2.2" | ||
} | ||
, "scripts": { | ||
"test": "mocha" | ||
} | ||
} |