-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.js
More file actions
23 lines (20 loc) · 704 Bytes
/
package.js
File metadata and controls
23 lines (20 loc) · 704 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.describe({
name: "appmill:animation-hooks",
summary: "Helpers for animation hooks, including SVG",
version: "0.1.2",
git: "https://github.com/strack/meteor-animation-hooks.git"
});
Package.onUse(function (api) {
api.versionsFrom('METEOR@0.9.0.1');
api.use('underscore', 'client');
api.use('templating', 'client');
api.use('jquery','client');
api.addFiles('svgClass.js', 'client');
api.addFiles('animation-hooks.html', 'client');
api.addFiles('animation-hooks.js', 'client');
});
Package.onTest(function (api) {
api.use('tinytest');
api.use('appmill:animation-hooks', 'client');
api.addFiles('animation-hooks-tests.js', 'client');
});