mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
15 lines
420 B
JavaScript
15 lines
420 B
JavaScript
Package.describe({
|
|
summary: "Configure security policies enforced by the browser",
|
|
version: "1.0.3"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.use(['browser-policy-content', 'browser-policy-framing'], 'server');
|
|
api.imply(['browser-policy-common'], 'server');
|
|
});
|
|
|
|
Package.onTest(function (api) {
|
|
api.use(["tinytest", "browser-policy", "ejson"], "server");
|
|
api.addFiles("browser-policy-test.js", "server");
|
|
});
|