-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.js
97 lines (88 loc) · 2.45 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
Package.describe({
name: 'smaltcreation:paypal-rest-api',
version: '0.2.0',
summary: 'Meteor package for PayPal REST API.',
git: 'https://github.com/SmaltCreation/meteor-paypal-rest-api',
documentation: 'README.md'
});
Npm.depends({
'paypal-rest-sdk': '1.6.0',
'underscore': '1.8.3',
'bootstrap': '3.3.5',
'font-awesome': '4.4.0'
});
Package.onUse(function(api) {
api.versionsFrom('1.1.0.3');
/**
* Used in BOTH side.
* CLIENT, SERVER.
*/
api.use([
'tap:[email protected]'
], ['client', 'server']);
api.addFiles([
'package-tap.i18n',
'lib/payment/form.js'
], ['client', 'server'] );
/**
* Used in CLIENT side.
*/
api.use([
'templating'
], 'client');
api.addFiles([,
'client/payment/payer/funding_instruments/credit_card/amount.html',
'client/payment/payer/funding_instruments/credit_card/button.html',
'client/payment/payer/funding_instruments/credit_card/result.html',
'client/payment/payer/funding_instruments/credit_card/result.js',
'client/payment/payer/funding_instruments/credit_card.html',
'client/payment/payer/funding_instruments/credit_card.js',
'client/invoice/email.html'
], 'client');
/**
* Internalization i18n.
* Need to be add after templates.
*/
api.addFiles([
"i18n/en.i18n.json",
"i18n/fr.i18n.json"
], ["client", "server"]);
/**
* Used in SERVER side.
*/
api.addFiles([
'server/payment.js',
'server/item.js',
'server/invoice/billing_info.js',
'server/invoice.js',
'server/paypal.js',
'paypal-rest-api.js'
], 'server');
/**
* Exports of Smalt objects.
* Meteor should implement nested object exportation.
* Example:
* { Smalt: {
* objectName: 'Smalt',
* client: true,
* server: true
* PayPal: {
* objectName: 'PayPal',
* client: false,
* server: true
* },
* PaymentForm: {
* objectName: 'PaymentForm',
* client: true,
* server: true
* }
* }
*/
api.export('PaymentForm', ['client', 'server']);
api.export('Smalt', 'server');
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('smaltcreation:paypal-rest-api');
api.addFiles('paypal-rest-api-tests.js');
});