-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.js
32 lines (28 loc) · 996 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
Package.describe({
name: 'cultofcoders:grapher-live',
version: '1.3.1',
// Brief, one-line summary of the package.
summary: 'Grapher Live - Visualize your queries in the browser',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/cult-of-coders/grapher-live',
// By default, Meteor will default to using README.md for documentation.
// To avoid submitting documentation, set this field to null.
documentation: 'README.md'
});
Npm.depends({
'lodash.clonedeep': '4.5.0',
});
Package.onUse(function(api) {
api.versionsFrom('1.3');
api.use('ecmascript');
api.use('tmeasday:[email protected]');
api.use('[email protected]');
api.use('cultofcoders:[email protected]');
api.use('cultofcoders:[email protected]');
api.use('less');
api.imply('[email protected]');
api.mainModule('main.client.js', 'client');
api.mainModule('main.server.js', 'server');
});
Package.onTest(function(api) {
});