This repository was archived by the owner on Feb 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.js
60 lines (52 loc) · 1.52 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
Package.describe({
name: 'doichain:doichain-meteor-api',
version: '0.5.22',
summary: 'Implements the Doichain Protocoll and provides a Doichain RPC API for Doichain nodes',
git: 'https://github.com/Doichain/meteor-api.git',
documentation: 'README.md'
});
Package.onUse(function(api) {
const use = [
'ecmascript',
'mongo',
'aldeed:[email protected]',
'alanning:[email protected]',
'mdg:[email protected]',
'universe:[email protected]',
'vsivsi:[email protected]',
'nimble:[email protected]',
'doichain:[email protected]',
'meteorhacks:[email protected]'
],
imply = [
'mongo'
];
api.versionsFrom('1.6.1');
api.use(use);
api.imply(imply);
// api.addFiles('private/version.json', 'server', { isAsset: true });
api.mainModule('doichain-client-api.js', 'client');
api.mainModule('doichain-server-api.js', 'server');
});
Npm.depends({
'@babel/runtime':'7.2.0',
'simpl-schema':'1.5.5',
'scribe-js':'2.0.4',
'namecoin': '0.1.4',
'secp256k1':'3.6.1',
'crypto-js':'3.1.9-1',
'standard-ecies':'1.0.0',
'bs58':'4.0.1',
'hashids':'1.2.2',
'eccrypto':'1.1.2',
'crypto':'1.0.1',
"bitcoinjs-lib":"5.1.7",
"doichain":"0.1.12",
'properties-reader':'2.2.0'
});
Package.onTest(api => {
api.use('practicalmeteor:[email protected]_1');
});