mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
14 lines
301 B
JavaScript
14 lines
301 B
JavaScript
Package.describe({
|
|
summary: "A minimalist client-side MVC framework",
|
|
version: "1.0.0",
|
|
deprecated: true,
|
|
documentation: null
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
// XXX Backbone requires either jquery or zepto
|
|
api.use(["jquery", "json", "underscore"]);
|
|
|
|
api.addFiles("backbone.js");
|
|
});
|