67 lines
1.6 KiB
JavaScript
67 lines
1.6 KiB
JavaScript
Package.describe({
|
|
name: "yogiben:admin-edit",
|
|
summary: "A complete admin dashboard solution",
|
|
version: "1.2.8",
|
|
git: "https://github.com/yogiben/meteor-admin"
|
|
});
|
|
|
|
Package.on_use(function(api){
|
|
|
|
both = ['client','server']
|
|
|
|
api.versionsFrom('METEOR@1.0');
|
|
|
|
api.use(
|
|
['iron:router@1.0.9',
|
|
'coffeescript',
|
|
'underscore',
|
|
'reactive-var',
|
|
'check',
|
|
'aldeed:collection2@2.5.0',
|
|
'aldeed:autoform@5.5.1',
|
|
'aldeed:template-extension@4.0.0',
|
|
'alanning:roles@1.2.13',
|
|
'raix:handlebar-helpers@0.2.5',
|
|
'reywood:publish-composite@1.4.2',
|
|
'momentjs:moment@2.10.6',
|
|
'aldeed:tabular@1.4.0',
|
|
'meteorhacks:unblock@1.1.0',
|
|
'zimme:active-route@2.3.2'
|
|
],
|
|
both);
|
|
|
|
api.use(['less@1.0.0 || 2.5.0','session','jquery','templating'],'client')
|
|
|
|
api.use(['email'],'server')
|
|
|
|
api.add_files([
|
|
'lib/both/AdminDashboard.coffee',
|
|
'lib/both/router.coffee',
|
|
'lib/both/utils.coffee',
|
|
'lib/both/startup.coffee',
|
|
'lib/both/collections.coffee'
|
|
], both);
|
|
|
|
api.add_files([
|
|
'lib/client/html/admin_templates.html',
|
|
'lib/client/html/admin_widgets.html',
|
|
'lib/client/html/admin_layouts.html',
|
|
'lib/client/html/admin_sidebar.html',
|
|
'lib/client/html/admin_header.html',
|
|
'lib/client/css/admin-custom.less',
|
|
'lib/client/js/admin_layout.js',
|
|
'lib/client/js/helpers.coffee',
|
|
'lib/client/js/templates.coffee',
|
|
'lib/client/js/events.coffee',
|
|
'lib/client/js/slim_scroll.js',
|
|
'lib/client/js/autoForm.coffee'
|
|
], 'client');
|
|
|
|
api.add_files([
|
|
'lib/server/publish.coffee',
|
|
'lib/server/methods.coffee'
|
|
], 'server');
|
|
|
|
api.export('AdminDashboard',both)
|
|
});
|