strftime/package.js
2015-06-04 23:48:10 +05:30

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');
});