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