forked from optilude/meteor-jira-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
38 lines (31 loc) · 779 Bytes
/
package.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* global Package, Npm */
"use strict";
Package.describe({
name: 'r00t3g:accounts-jira',
version: '0.0.6',
summary: 'Authenticate to a remote JIRA instance (forked from optilude:jira-auth)',
git: 'https://github.com/r00t3g/meteor-jira-auth',
documentation: 'README.md'
});
Npm.depends({
"jira-connector": "1.2.1"
});
Package.onUse(function(api) {
api.versionsFrom('1.2.0.1');
api.use([
'ecmascript',
'oauth',
'oauth1',
'underscore',
'service-configuration',
'accounts-base',
'accounts-oauth',
'random'
]);
api.imply([
'accounts-base'
]);
api.addFiles(['server.js'], 'server');
api.addFiles(['client.js'], 'client');
api.export('JiraAuth');
});