Skip to content

Instantly share code, notes, and snippets.

@kschingiz
Last active December 26, 2019 09:59
Show Gist options
  • Save kschingiz/01ad6c8f78b5a32133f5172e7a7b97ce to your computer and use it in GitHub Desktop.
Save kschingiz/01ad6c8f78b5a32133f5172e7a7b97ce to your computer and use it in GitHub Desktop.
Npm.depends({
"express": "1.0.0"
})
Package.describe({
name: 'me:my-package',
version: '1.0.2',
summary: 'Package summary',
git: 'git repo',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.6.1');
api.use('ecmascript');
api.use('underscore');
api.mainModule('module.js');
});
Package.onTest(function(api) {
api.use('ecmascript');
api.use('tinytest');
api.use('me:my-package');
api.mainModule('module-tests.js');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment