-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
38 lines (30 loc) · 968 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
Package.describe({
name: 'gbit:populate',
version: '0.0.1',
summary: 'Populate database with fake data using simpleSchema and Collection2 on Meteor',
git: 'https://github.com/girassolbit/meteor-populate.git',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.1.0.3');
api.imply('aldeed:[email protected]');
api.imply('aldeed:[email protected]');
api.use('aldeed:[email protected]');
api.use('practicalmeteor:[email protected]');
api.use('underscore');
api.use('check');
api.use('mongo');
api.use('random');
api.addFiles('lib/meteor-populate.js', 'server');
api.addFiles('lib/simple-schema-extension.js', ['client','server']);
api.export('Populate',['client','server']);
api.export('faker',['client','server']);
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('gbit:populate');
api.addFiles('tests/meteor-populate-tests.js');
});
Npm.depends({
'randexp': '0.4.0'
});