forked from ohadwkn/piwik
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.js
More file actions
26 lines (22 loc) · 696 Bytes
/
package.js
File metadata and controls
26 lines (22 loc) · 696 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
/* Information about this package */
Package.describe({
// Short two-sentence summary.
summary: "Piwik tracking for Meteor.",
// Version number.
version: "0.2.1",
// Optional. Default is package directory name.
name: "davidsichau:piwik",
documentation: 'README.md',
git: 'https://github.com/DavidSichau/piwik'
});
/* This defines your actual package */
Package.onUse(function (api) {
api.versionsFrom('1.1.0.2');
var both = ["client", "server"];
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"
});