forked from leaonline/meteor-accounts-oauth-lea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
27 lines (24 loc) · 968 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
/* eslint-env meteor */
Package.describe({
name: 'mrspark:oauth-lea',
version: '1.0.3',
// Brief, one-line summary of the package.
summary: 'OAuth package to provide authorizaiton code login with lea',
// URL to the Git repository containing the source code for this package.
git: 'git@github.com:leaonline/meteor-accounts-oauth-lea.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(api => {
api.versionsFrom('3.0.4')
api.use('ecmascript@0.12.7', ['client', 'server'])
api.use('oauth2@1.3.3', ['client', 'server'])
api.use('oauth@3.0.0', ['client', 'server'])
api.use('http@3.0.0', ['server'])
api.use('random@1.2.2', 'client')
api.use('service-configuration@1.3.5', ['client', 'server'])
api.addFiles('lea_client.js', 'client')
api.addFiles('lea_server.js', 'server')
api.export('Lea')
})