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