-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
30 lines (25 loc) · 777 Bytes
/
package.js
File metadata and controls
30 lines (25 loc) · 777 Bytes
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
Package.describe({
name: 'shuttler:selection',
version: '0.0.9',
summary: 'Selection in the graphs.',
git: 'https://github.com/meteor-shuttler/selection.git',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.2.1');
api.use('mongo');
api.use('ecmascript');
api.use('stevezhu:lodash@4.3.0');
api.use('aldeed:collection2@2.9.0');
api.use('dburles:collection-helpers@1.0.4');
api.use('matb33:collection-hooks@0.8.1');
api.use('ivansglazunov:restrict@0.0.2');
api.use('shuttler:graphs@0.0.10');
api.addFiles('Selection.js');
api.addFiles('Schema.js');
api.addFiles('byPaths.js');
api.addFiles('actions.js');
api.addFiles('watchers.js');
api.addFiles('protection.js');
api.export('Shuttler');
});