-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.js
More file actions
24 lines (20 loc) · 715 Bytes
/
package.js
File metadata and controls
24 lines (20 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// package.js
// Author: Joel Lubrano
// Meteor package configuration file
Package.describe({
summary: "A plugin to the Datamaps library that provides support for overlaying svg icons.",
version: "0.2.7",
name: "jdlubrano:datamaps-icons",
git: "https://github.com/jdlubrano/datamaps-icons.git"
});
Package.onUse(function(api) {
api.versionsFrom('0.9.0');
api.use('hyperborea:datamaps@1.0.5', 'client');
api.imply('hyperborea:datamaps@1.0.5', 'client');
api.addFiles(['build/datamaps-icons.js'], 'client');
});
Package.onTest(function(api) {
api.use("jdlubrano:datamaps-icons");
api.use(["tinytest", "test-helpers"]);
api.addFiles("tests/tinytest/plugin-is-defined-test.js", "client");
});