-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
executable file
·39 lines (36 loc) · 927 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
/* global Package */
Package.describe({
name: 'freedombase:legal-management',
version: '2.0.2',
summary: 'Manage your legal documents and user consent.',
git: 'https://github.com/freedombase/meteor-legal-management',
documentation: 'README.md',
})
Package.onUse(function (api) {
api.versionsFrom(['2.8.1', '3.0'])
api.use([
'meteor',
'ecmascript',
'check',
'mongo',
'ddp',
'typescript',
'callback-hook',
'zodern:[email protected]',
])
api.use([
'aldeed:[email protected]',
'aldeed:[email protected]',
'aldeed:[email protected] || 2.0.0',
])
// 'socialize:[email protected]'
api.mainModule('common.ts', 'client')
api.mainModule('server.ts', 'server')
})
Package.onTest(function (api) {
api.use('ecmascript')
api.use('tinytest')
api.use('typescript')
api.use('freedombase:legal-management')
api.mainModule('legal-tests.ts', ['client', 'server'])
})