Files
meteor/packages/http/package.js
David Glasser 43b4b30205 Release PLUGINS-PREVIEW@1
This included removing some internal version constraints. It would be
nice if package A could say "use B@2.0.0" (when both have changed), but
when they're both in the release, we need to make a release that has a
B@2.0.0-rc in it, which doesn't match that constraint. Fortunately,
constraints aren't necessary within a release anyway.
2015-07-22 23:19:11 -07:00

32 lines
919 B
JavaScript

Package.describe({
summary: "Make HTTP calls to remote servers",
version: '1.1.1-plugins.0'
});
Npm.depends({request: "2.53.0"});
Package.onUse(function (api) {
api.use('underscore');
api.use('url');
api.export('HTTP');
api.export('HTTPInternals', 'server');
api.addFiles('httpcall_common.js', ['client', 'server']);
api.addFiles('httpcall_client.js', 'client');
api.addFiles('httpcall_server.js', 'server');
api.addFiles('deprecated.js', ['client', 'server']);
});
Package.onTest(function (api) {
api.use('webapp', 'server');
api.use('underscore');
api.use('random');
api.use('jquery', 'client');
api.use('http', ['client', 'server']);
api.use('tinytest');
api.use('test-helpers', ['client', 'server']);
api.addFiles('test_responder.js', 'server');
api.addFiles('httpcall_tests.js', ['client', 'server']);
api.addFiles('test_static.serveme', 'client', {isAsset: true});
});