-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.js
44 lines (40 loc) · 1.06 KB
/
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
40
41
42
43
44
Package.describe({
name: 'lai:ddp-inspector',
version: '1.1.9',
// Brief, one-line summary of the package.
summary: 'See all DDP activity in the client-side and full-text search them.',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/rclai/meteor-ddp-inspector.git',
// By default, Meteor will default to using README.md for documentation.
// To avoid submitting documentation, set this field to null.
documentation: 'README.md',
debugOnly: true
});
Package.onUse(function (api) {
api.versionsFrom('1.0');
api.use([
'mongo',
'tracker',
'templating',
'session',
'u2622:[email protected]',
'underscore',
'mousetrap:[email protected]_1',
'jquery',
'reactive-dict'
]);
api.use('constellation:[email protected]', {
weak: true
});
api.addFiles([
'templates.html',
'styles.css',
'console-log-polyfill.js',
'constants.js',
'globals.js',
'method-cache.js',
'constellation.js',
'templates.js',
'ddp-inspector.js'
], ['client']);
});