-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
34 lines (28 loc) · 758 Bytes
/
package.js
File metadata and controls
34 lines (28 loc) · 758 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
27
28
29
30
31
32
33
// package.js
// The Meteor package file.
Package.describe({
name: 'nvd3:nvd3-wrapper', // this name will be changed once the autopublish workflow is confirmed to be working
summary: 'NVD3 (not yet official) - Reusable charts for d3.js',
version: '1.8.2',
git: 'https://github.com/MeteorPackaging/nvd3-wrapper.git'
});
Package.onUse(function(api) {
api.versionsFrom('1.0.1');
api.use('d3js:d3@3.5.5', 'client');
api.addFiles([
'upstream/build/nv.d3.js',
'upstream/build/nv.d3.css',
'meteor-post.js'
], 'client');
api.export('nv');
});
Package.onTest(function(api) {
api.use('nvd3:nvd3-wrapper');
api.use([
'tinytest',
'test-helpers'
]);
api.addFiles([
'tests/nv-is-defined-test.js'
], 'client');
});