forked from rGiladi/accounts-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
44 lines (36 loc) · 1008 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
39
40
41
42
43
44
Package.describe({
name: 'meteoreact:accounts',
summary: 'Simple and intuative accounts view layer with react',
version: '1.2.4',
documentation: 'README.md',
git: 'https://github.com/royGil/accounts-react'
})
Package.onUse(api => {
api.versionsFrom('1.6.1')
api.use([
'ecmascript',
'accounts-base',
'accounts-password',
'mdg:[email protected]',
'check'
], ['client', 'server'])
api.use('[email protected]', 'client')
api.use('service-configuration', { weak: true })
api.use('http', 'server')
api.mainModule('index.js', ['client', 'server'])
})
Package.onTest(api => {
api.use([
'ecmascript',
'accounts-base',
'accounts-password',
'meteoreact:accounts',
'meteoreact:accounts-unstyled',
'mdg:[email protected]',
'cultofcoders:mocha'
])
api.use('http', 'server')
api.mainModule('__tests__/client.test.js', 'client')
api.mainModule('__tests__/server.test.js', 'server')
})