forked from awsp/handsontable-meteor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
36 lines (30 loc) · 1.02 KB
/
package.js
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
34
35
36
Package.describe({
name: 'awsp:handsontable',
version: '0.11.0',
summary: 'Handsontable is a data grid component with an Excel-like appearance. Built in JavaScript.',
git: 'https://github.com/awsp/handsontable-meteor',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.0');
api.addFiles('awsp:handsontable.js', 'client');
api.use('jquery', 'client');
api.addFiles([
'bower_components/pikaday/css/pikaday.css',
'lib/handsontable.meteor.0.19.0.css',
'lib/handsontable-ruleJS/src/handsontable.formula.css',
'lib/rulejs/ruleJS.all.full.js',
'lib/handsontable.meteor.0.19.0.js',
'lib/rulejs/handsontable.formula.js',
'lib/handsontable-ruleJS/lib/highlight/styles/github.css',
'lib/rulejs/highlight.pack.js',
'styles/custom.css'
], 'client');
api.export('Handsontable', 'client');
api.export('ruleJS', 'client');
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('awsp:handsontable');
api.addFiles('awsp:handsontable-tests.js');
});