forked from yourcelf/meteor-react-router-ssr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
45 lines (39 loc) · 1.01 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
34
35
36
37
38
39
40
41
42
43
44
45
Package.describe({
name: 'jasonnathan:react-router-ssr',
version: '3.1.52',
summary: 'Server-side rendering for react-router and react-meteor-data rehydratating Meteor subscriptions',
git: 'https://github.com/jasonnathan/meteor-react-router-ssr.git',
documentation: 'README.md'
});
Npm.depends({
'cookie-parser': '1.4.1',
'cheerio': '0.20.0',
'deepmerge': '0.2.10',
'apollo-client': '0.4.22',
'react-apollo': '0.5.16'
});
Package.onUse(function(api) {
api.versionsFrom('1.3');
api.use([
'ecmascript',
'tracker',
'minimongo@1.0.0',
'meteorhacks:fast-render@2.16.0',
'meteorhacks:inject-data@2.0.0',
'tmeasday:check-npm-versions@0.2.0'
]);
api.use([
'underscore@1.0.3',
'webapp@1.2.0',
'mongo@1.0.0',
'routepolicy@1.0.5',
'url@1.0.9'
], 'server');
api.use([
'autopublish@1.0.0',
'tmeasday:publish-counts@0.7.0',
'promise@0.8.8'
], 'server', {weak: true})
api.export('ReactRouterSSR');
api.mainModule('lib/react-router-ssr.js');
});