mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2024-11-22 14:12:07 +00:00
13 lines
218 B
JavaScript
13 lines
218 B
JavaScript
'use strict';
|
|
|
|
const packageJson = require('../package.json');
|
|
|
|
const name = 'eCollect Node Ebics Client';
|
|
const { version } = packageJson;
|
|
|
|
module.exports = {
|
|
name,
|
|
version,
|
|
productString: `${name} ${version}`,
|
|
};
|