Skip to content

Commit

Permalink
packaged for meteor
Browse files Browse the repository at this point in the history
  • Loading branch information
Joey Arnold committed Jan 15, 2016
1 parent ec916b4 commit 5d017c7
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@ SYNOPSIS
var Combinatorics = require('js-combinatorics');
````

### Meteor

In your project directory:
```bash
meteor add jandres:js-combinatorics
```

`Combinatorics` is now available in your app/package namespace.

Usage
-----

Expand Down
18 changes: 18 additions & 0 deletions package.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Package.describe({
name: 'jandres:js-combinatorics',
version: '0.5.0',
// Brief, one-line summary of the package.
summary: 'power set, combination, permutation and more in JavaScript',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/dankogai/js-combinatorics.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.2.1');
api.addFiles([
'combinatorics.js'
]);
});

0 comments on commit 5d017c7

Please sign in to comment.