-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
28 lines (25 loc) · 837 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
Npm.depends({
'lodash.get': '4.4.2',
});
Package.describe({
name: 'jh7:server-i18n',
version: '0.0.3',
// Brief, one-line summary of the package.
summary: 'Private i18n for server side only.',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/JH7/meteor-server-i18n',
// 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((api) => {
api.versionsFrom('1.0');
api.use('[email protected]');
api.mainModule('server-i18n.js', 'server');
});
Package.onTest((api) => {
api.use('[email protected]');
api.use('meteortesting:[email protected]');
api.use('jh7:[email protected]');
api.mainModule('tests/server-i18n-tests.js', 'server');
});