-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.js
28 lines (25 loc) · 847 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
/* Information about this package */
Package.describe({
// Short two-sentence summary.
summary: "Piwik tracking for Meteor.",
// Version number.
version: "0.0.2",
// Optional. Default is package directory name.
name: "appjitsu:piwik",
documentation: 'README.md',
git: 'https://github.com/appjitsu/piwik.git'
});
/* This defines your actual package */
Package.onUse(function (api) {
// If no version is specified for an 'api.use' dependency, use the
// one defined in Meteor 0.9.0.
api.versionsFrom('0.9.0');
// Use application-configuration package, version 1.0.0 or newer.
api.use('application-configuration@1.0.0');
api.addFiles(['client/piwik.js'], ['client']);
api.addFiles(['server/piwik.js'], ['server']);
});
/* This lets you use npm packages in your package*/
Npm.depends({
"piwik-tracker": "0.1.1"
});