Vulcan/packages/nova-components/package.js

44 lines
848 B
JavaScript
Raw Normal View History

Package.describe({
2016-02-19 09:54:13 +09:00
name: "nova:base-components",
summary: "Telescope components package",
version: "0.25.7",
git: "https://github.com/TelescopeJS/telescope.git"
});
Npm.depends({
'formsy-react': '0.17.0',
2016-02-18 16:26:52 +09:00
'formsy-react-components': '0.6.6',
'react-dom': '0.14.7',
'react-modal': '0.6.1'
});
Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
2016-02-17 14:22:28 +09:00
'telescope:core@0.25.7',
'telescope:posts@0.25.7',
// 'telescope:i18n@0.25.7',
// 'telescope:settings@0.25.7',
2016-02-17 14:22:28 +09:00
'telescope:users@0.25.7',
2016-02-18 16:26:52 +09:00
'telescope:comments@0.25.7',
2016-02-21 13:57:02 +09:00
'alt:react-accounts-ui@1.0.0',
2016-02-18 16:26:52 +09:00
// 'alt:react-accounts-unstyled'
]);
api.addFiles([
2016-02-21 13:57:02 +09:00
'lib/config.js',
2016-02-17 15:09:49 +09:00
'lib/components.js',
'lib/routes.jsx'
], ['client', 'server']);
2016-02-21 13:57:02 +09:00
api.addFiles([
'lib/client/accounts.js'
], ['client']);
});