mirror of
https://github.com/vale981/Vulcan
synced 2025-03-07 02:21:43 -05:00
107 lines
2.5 KiB
JavaScript
107 lines
2.5 KiB
JavaScript
Package.describe({
|
|
name: 'nova:lib',
|
|
summary: 'Telescope libraries.',
|
|
version: '0.25.7',
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
var packages = [
|
|
'meteor-base@1.0.3',
|
|
'mongo',
|
|
'blaze-html-templates@1.0.1',
|
|
'jquery',
|
|
'session',
|
|
'tracker',
|
|
'service-configuration',
|
|
'standard-minifiers',
|
|
// 'accounts-ui',
|
|
'accounts-base',
|
|
'accounts-password',
|
|
'check',
|
|
'reactive-var',
|
|
'http',
|
|
'email',
|
|
'tracker',
|
|
'aldeed:simple-schema@1.5.3',
|
|
|
|
// 'nicolaslopezj:mrf@0.1.1',
|
|
// 'nicolaslopezj:mrf-material-ui@0.1.1',
|
|
|
|
'aldeed:collection2@2.9.1',
|
|
// 'aldeed:http@0.2.2',
|
|
// 'aldeed:autoform@5.8.1',
|
|
// 'aldeed:template-extension@4.0.0',
|
|
|
|
// 'fourseven:scss@3.4.1',
|
|
// 'kadira:blaze-layout@2.3.0',
|
|
'meteorhacks:picker@1.0.3',
|
|
// 'kadira:dochead@1.4.0',
|
|
'dburles:collection-helpers@1.0.4',
|
|
'matb33:collection-hooks@0.8.1',
|
|
'chuangbo:marked@0.3.5_1',
|
|
// 'meteorhacks:fast-render@2.11.0',
|
|
// 'meteorhacks:subs-manager@1.6.3',
|
|
'percolatestudio:synced-cron@1.1.0',
|
|
// 'useraccounts:unstyled@1.13.1',
|
|
// 'useraccounts:flow-routing@1.13.1',
|
|
// 'aramk:tinycolor@1.1.0_1',
|
|
'momentjs:moment@2.12.0',
|
|
// 'sacha:spin@2.3.1',
|
|
// 'aslagle:reactive-table@0.8.24',
|
|
'utilities:avatar@0.9.2',
|
|
'fortawesome:fontawesome@4.5.0',
|
|
// 'ccan:cssreset@1.0.0',
|
|
'djedi:sanitize-html@1.11.2',
|
|
'jparker:gravatar@0.4.1',
|
|
// 'sanjo:meteor-files-helpers@1.2.0_1',
|
|
// 'chuangbo:cookie@1.1.0',
|
|
'ongoworks:speakingurl@9.0.0',
|
|
// 'okgrow:router-autoscroll@0.1.6',
|
|
'tmeasday:publish-counts@0.7.3',
|
|
// 'utilities:onsubscribed@0.1.2',
|
|
// 'utilities:menu@0.1.6',
|
|
// 'seba:minifiers-autoprefixer@0.0.1',
|
|
'meteorhacks:unblock@1.1.0',
|
|
// 'kadira:flow-router@2.10.1',
|
|
// 'tmeasday:healthcheck-handler@0.0.2',
|
|
'kadira:flow-router-ssr@3.12.2',
|
|
'arillo:flow-router-helpers@0.5.1',
|
|
// 'peerlibrary:reactive-publish@0.2.0',
|
|
|
|
'utilities:smart-publications',
|
|
'utilities:smart-methods',
|
|
|
|
'ecmascript',
|
|
'react-meteor-data@0.2.8'
|
|
];
|
|
|
|
api.use(packages);
|
|
|
|
api.imply(packages);
|
|
|
|
api.addFiles([
|
|
'lib/config.js',
|
|
'lib/utils.js',
|
|
'lib/callbacks.js',
|
|
'lib/settings.js',
|
|
'lib/collections.js',
|
|
'lib/deep.js',
|
|
'lib/deep_extend.js'
|
|
], ['client', 'server']);
|
|
|
|
|
|
api.addFiles([
|
|
'lib/server/server-config.js'
|
|
], ['server']);
|
|
|
|
|
|
api.export([
|
|
'Telescope',
|
|
'Counts'
|
|
]);
|
|
|
|
});
|