-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.js
More file actions
19 lines (17 loc) · 757 Bytes
/
package.js
File metadata and controls
19 lines (17 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Package metadata for Meteor.js full stack web framework
// This file is defined in Meteor documentation at http://docs.meteor.com/#/full/packagejs
// and used by Meteor https://www.meteor.com/ and its package repository Atmosphere https://atmospherejs.com
Package.describe({
name: 'msand:d3zoompanbrushchart',
version: '1.0.2',
summary: 'A minimal reusable chart with zoom, pan and brush for time series using d3.js',
git: 'https://github.com/msand/d3zoompanbrushchart.git',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom(["METEOR@1.0"]);
api.use('d3js:d3@3.5.5', 'client');
api.addFiles('d3zoompanbrushchart.js', "client");
api.addFiles('styles.css', "client");
api.export("d3zoompanbrushchart");
});