-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
executable file
·30 lines (27 loc) · 1.05 KB
/
package.js
File metadata and controls
executable file
·30 lines (27 loc) · 1.05 KB
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
Package.describe({
name: 'redcap3000:picon',
version: '0.0.2',
// Brief, one-line summary of the package.
summary: 'Gnarly Node.js web based icon editor for the utilizing Raspberry Pi Sense HAT LED in real time.',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/redcap3000/picon',
// By default, Meteor will default to using README.md for documentation.
// To avoid submitting documentation, set this field to null.
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.2.1');
api.use(['redcap3000:run-cli@0.0.2'],'server');
api.use(['spacebars','templating'],'client');
api.export('Sensehat',['client','server']);
api.export('RgbColors',['client','server']);
api.addFiles('piconServer.js','server');
api.addFiles('templates.html','client');
api.addFiles('picon.js','client');
api.addFiles('piconShared.js',['client','server'])
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('redcap3000:picon');
api.addFiles('picon-tests.js');
});