-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.js
39 lines (35 loc) · 912 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
39
Package.describe({
name: 'nous:autoform-picker',
summary: 'Picker is a select component for autoform with new database entrance creation possibility.',
version: '1.0.2',
git: 'https://github.com/nous-consulting/autoform-picker',
documentation: 'README.md'
});
Npm.depends({
lodash: '4.12.0',
jquery: '2.2.3'
});
Package.onUse(function(api) {
api.versionsFrom('1.3.2.4');
api.use([
'ecmascript',
'templating',
'blaze',
'reactive-var',
'twbs:[email protected]',
'aldeed:[email protected]',
'aldeed:[email protected]',
'nous:[email protected]'
]);
api.addFiles([
'src/template.html',
'src/styles.css'
], 'client');
api.mainModule('src/main.js', 'client');
api.mainModule('src/methods.js', 'server');
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('nous:autoform-picker');
api.addFiles('autoform-picker-tests.js');
});