File size: 504 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
// package metadata file for Meteor.js
Package.describe({
name: 'underscorestring:underscore.string',
summary: 'underscore.string (official): String manipulation extensions for Underscore.js javascript library.',
version: '3.3.6',
git: 'https://github.com/epeli/underscore.string.git',
documentation: 'README.markdown'
});
Package.onUse(function (api) {
api.versionsFrom('[email protected]');
api.addFiles(['meteor-pre.js','dist/underscore.string.js','meteor-post.js']);
api.export("s");
});
|