Skip to content

Commit

Permalink
add git url in package.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Rebolon committed Jan 21, 2015
1 parent 6d96715 commit 544dfb5
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
Package.describe({
name: 'http:plugin-encoding',
version: '0.0.1',
// Brief, one-line summary of the package.
name: 'rebolon:http-plugin-encoding',
version: '0.0.2',
summary: 'Add method getWithEncoding to HTTP package',
// URL to the Git repository containing the source code for this package.
git: '',
// By default, Meteor will default to using README.md for documentation.
// To avoid submitting documentation, set this field to null.
git: 'https://github.com/Rebolon/meteor-package-http-plugin-encoding.git',
documentation: 'README.md'
});

Package.onUse(function(api) {
api.versionsFrom('1.0');

api.use(['meteorhacks:npm', 'underscore', 'http']);
api.use('underscore');
api.use('http');

api.addFiles(['plugin-encoding.js'], ['server']);

// need to export HTTP (if http has not been required by main app)
api.export('HTTP');
api.imply('http');
});

Npm.depends({"iconv-lite": "0.4.6",
"request": "2.51.0"});
Npm.depends(
{
"iconv-lite": "0.4.6",
"request": "2.51.0"
}
);

/*
Package.onTest(function(api) {
Expand Down

0 comments on commit 544dfb5

Please sign in to comment.