-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.js
45 lines (37 loc) · 1.21 KB
/
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
45
Package.describe({
name: 'symptomatic:vault-server-freemium',
version: '6.5.0',
summary: 'Add oauth2 server support to your Meteor on FHIR application.',
git: 'https://github.com/clinical-meteor/fhir-vault-server'
});
Package.onUse(function(api) {
api.versionsFrom('1.0');
// core build
api.use('[email protected]');
api.use('[email protected]');
api.use('[email protected]');
api.use('[email protected]');
api.use('[email protected]');
api.use('[email protected]');
api.use('check', 'server');
api.use('meteorhacks:[email protected]', 'server');
// database drivers, data cursors
api.use('mongo');
api.use('aldeed:[email protected]');
api.use('matb33:[email protected]');
api.use('clinical:[email protected]');
// FHIR data layer
api.use('clinical:[email protected]');
api.use('clinical:[email protected]');
api.use('clinical:hl7-fhir-data-infrastructure');
// REST Endpoints
api.addFiles('FhirServer/Core.js', 'server');
api.addFiles('FhirServer/Metadata.js', 'server');
// DDP autopublish
api.addFiles('lib/Collections.js');
});
Npm.depends({
"faker": "5.1.0",
"express": "4.13.4",
"body-parser": "1.14.2",
});