Vulcan/packages/telescope-lib/package.js

99 lines
2.2 KiB
JavaScript
Raw Normal View History

Package.describe({
name: 'telescope:lib',
summary: 'Telescope libraries.',
2015-07-28 11:16:14 +09:00
version: '0.22.2',
2015-05-16 12:05:53 +09:00
git: "https://github.com/TelescopeJS/Telescope.git"
});
Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
2015-04-23 11:11:07 +09:00
var packages = [
'standard-app-packages',
2015-05-07 16:18:07 +09:00
'service-configuration',
'accounts-ui',
'accounts-base',
'accounts-password',
'accounts-twitter',
'accounts-facebook',
'check',
2015-07-14 11:40:58 +09:00
// 'audit-argument-checks',
2015-04-24 09:28:50 +09:00
'reactive-var',
'http',
'email',
2015-05-20 09:19:35 +09:00
'spiderable',
2015-05-16 12:05:53 +09:00
'aldeed:simple-schema@1.3.3',
'aldeed:collection2@2.3.3',
2015-07-29 19:10:28 +09:00
'aldeed:http@0.2.2',
'sacha:autoform@5.1.2',
2015-05-11 12:39:49 +09:00
'aldeed:template-extension@3.4.3',
2015-07-29 19:10:28 +09:00
'tap:i18n@1.5.1',
'fourseven:scss@3.2.0',
'iron:router@1.0.9',
2015-05-13 11:01:03 +09:00
'dburles:collection-helpers@1.0.3',
// 'meteorhacks:flow-router@1.5.0',
// 'meteorhacks:flow-layout@1.1.1',
2015-07-29 19:10:28 +09:00
'matb33:collection-hooks@0.7.13',
'chuangbo:marked@0.3.5',
2015-07-29 19:10:28 +09:00
'meteorhacks:fast-render@2.7.1',
'meteorhacks:subs-manager@1.5.2',
'percolatestudio:synced-cron@1.1.0',
2015-07-29 19:10:28 +09:00
'useraccounts:unstyled@1.11.1',
'manuelschoebel:ms-seo@0.4.1',
'aramk:tinycolor@1.1.0_1',
2015-07-29 19:10:28 +09:00
'momentjs:moment@2.10.6',
'sacha:spin@2.3.1',
'aslagle:reactive-table@0.8.11',
'utilities:avatar@0.7.14',
2015-04-23 09:14:51 +09:00
'fortawesome:fontawesome@4.3.0',
2015-04-23 11:11:07 +09:00
'ccan:cssreset@1.0.0',
2015-07-29 19:10:28 +09:00
'djedi:sanitize-html@1.7.0',
'dburles:collection-helpers@1.0.3',
2015-05-16 12:05:53 +09:00
'jparker:gravatar@0.3.1',
2015-07-29 19:10:28 +09:00
'sanjo:meteor-files-helpers@1.1.0_7',
'cmather:handlebars-server@2.0.0',
2015-06-18 13:04:38 +09:00
'chuangbo:cookie@1.1.0',
'ongoworks:speakingurl@5.0.1'
2015-04-23 11:11:07 +09:00
];
2015-04-23 11:11:07 +09:00
api.use(packages);
api.imply(packages);
api.addFiles([
'lib/core.js',
2015-04-24 09:28:50 +09:00
'lib/utils.js',
'lib/callbacks.js',
2015-04-24 09:28:50 +09:00
'lib/collections.js',
'lib/modules.js',
'lib/config.js',
'lib/deep.js',
'lib/deep_extend.js',
'lib/autolink.js',
'lib/themes.js',
2015-04-24 10:49:24 +09:00
'lib/menus.js',
'lib/base.js',
'lib/colors.js',
'lib/icons.js'
], ['client', 'server']);
api.addFiles([
'lib/client/jquery.exists.js',
'lib/client/template_replacement.js'
], ['client']);
api.export([
'Telescope',
'_',
'getTemplate',
'templates',
'themeSettings',
'getVotePower'
]);
});