-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
executable file
·37 lines (30 loc) · 921 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
Package.describe({
name: 'clinical:hl7-resource-composition',
version: '1.5.0',
summary: 'HL7 FHIR Resource - Composition',
git: 'https://github.com/clinical-meteor/hl7-resource-composition',
documentation: 'README.md'
});
Package.onUse(function (api) {
api.versionsFrom('1.1.0.3');
api.use('aldeed:[email protected]');
api.use('simple:[email protected]');
api.use('momentjs:[email protected]');
api.use('[email protected]');
api.use('session');
api.use('http');
api.use('[email protected]');
api.use('clinical:[email protected]');
api.use('matb33:[email protected]');
api.addFiles('lib/Compositions.js', ['client', 'server']);
api.export('Compositions');
api.mainModule('index.jsx', 'client');
});
Npm.depends({
"simpl-schema": "1.5.3",
"moment": "2.22.2",
"lodash": "4.17.4",
"react-icons": "3.2.2",
"material-fhir-ui": "0.9.18",
"winston": "3.2.1"
})