mirror of
				https://github.com/node-ebics/node-ebics-client.git
				synced 2025-11-03 22:51:04 +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}`,
 | 
						|
};
 |