-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.js
33 lines (31 loc) · 1.25 KB
/
package.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Package.describe({
name: 'universe:react-markdown-wysiwyg',
version: '1.3.0',
// Brief, one-line summary of the package.
summary: 'Es6 modules with react components wysiwyg based on Medium Editor, It works with markdown in<->out',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/cristo-rabani/meteor-universe-react-markdown-wysiwyg',
// By default, Meteor will default to using README.md for documentation.
// To avoid submitting documentation, set this field to null.
documentation: 'README.md'
});
Package.onUse(function (api) {
api.versionsFrom('1.3');
api.use('ecmascript');
api.use('underscore');
api.use('markdown');
api.use('jquery');
api.addFiles('check.deps.js', 'server');
api.addFiles([
'styles/tabs.css',
'styles/medium-editor.css',
'styles/medium-editor-theme-beagle.css',
'styles/default.css'], 'client');
api.addFiles('en.i18n.yml');
api.mainModule('index.js', ['client']);
});