-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.js
38 lines (34 loc) · 915 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
38
/* global Package, Npm */
/* eslint-disable prefer-arrow-callback */
Package.describe({
name: 'hwillson:stub-collections',
version: '1.0.9',
summary: 'Stub out Meteor collections with in-memory local collections.',
documentation: 'README.md',
git: 'https://github.com/hwillson/meteor-stub-collections.git',
debugOnly: true,
});
Npm.depends({
chai: '4.1.2',
sinon: '6.0.1',
});
Package.onUse(function onUse(api) {
api.versionsFrom('1.3');
api.use([
'ecmascript',
'mongo',
]);
api.mainModule('index.js');
});
Package.onTest(function onTest(api) {
api.use([
'hwillson:stub-collections',
'aldeed:[email protected]',
'aldeed:[email protected]',
'ecmascript',
'mongo',
'lmieulet:[email protected]', // Needed until https://github.com/meteortesting/meteor-mocha/pull/69 is merged
'meteortesting:[email protected]',
]);
api.mainModule('tests.js');
});