mirror of
https://github.com/samsonjs/strftime.git
synced 2026-03-25 09:05:48 +00:00
22 lines
683 B
JavaScript
22 lines
683 B
JavaScript
Package.describe({
|
|
name: 'kalarani:strftime',
|
|
version: '0.0.1',
|
|
// Brief, one-line summary of the package.
|
|
summary: 'strftime for JavaScript',
|
|
// URL to the Git repository containing the source code for this package.
|
|
git: 'git://github.com/samsonjs/strftime.git',
|
|
// 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.1.0.2');
|
|
api.addFiles('strftime.js');
|
|
});
|
|
|
|
Package.onTest(function(api) {
|
|
api.use('peerlibrary:assert');
|
|
api.use('kalarani:strftime');
|
|
api.addFiles('strftime-tests.js');
|
|
});
|