-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.js
37 lines (31 loc) · 821 Bytes
/
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
34
35
36
37
Package.describe({
name: "xavcz:nova-post-by-feed",
summary: "Auto post via RSS to Nova, additional feature not part of core",
version: "0.27.5-nova",
git: "https://github.com/xavcz/nova-post-by-feed.git"
});
Npm.depends({
'feedparser': '1.0.0',
'to-markdown': '0.0.2',
'he': '0.5.0',
'iconv-lite': '0.4.7',
'moment': '2.13.0',
});
Package.onUse(function(api) {
api.versionsFrom("[email protected]");
api.use([
'nova:[email protected]',
'nova:[email protected]',
'nova:[email protected]',
'nova:[email protected]',
'nova:[email protected]',
'nova:[email protected]',
'nova:[email protected]',
'nova:[email protected]',
]);
api.mainModule('lib/client.js', 'client');
api.mainModule('lib/server.js', 'server');
api.export([
'Feeds'
]);
});