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