Files
meteor/packages/force-ssl-common/package.js
Hugh Willson 987b921f34 Adjusted force-ssl to work with the forwarded header (RFC 7239). (#8440)
* Adjusted force-ssl to work with the forwarded header (RFC 7239).

* Fixed invalid Object.assign call.
2017-03-15 11:47:12 -04:00

20 lines
383 B
JavaScript

Package.describe({
summary: 'Internal force-ssl common code.',
version: '1.0.14'
});
Npm.depends({
'forwarded-http': '0.3.0'
});
Package.onUse(function (api) {
api.use('ecmascript');
api.mainModule('force_ssl_common.js', 'server');
});
Package.onTest(function (api) {
api.use('ecmascript');
api.use('tinytest');
api.mainModule('force_ssl_tests.js', 'server');
});