node-ebics-client/lib/consts.js
2019-11-07 10:26:53 +02:00

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}`,
};