1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-23 18:53:36 +02:00

16 lines
421 B
TypeScript
Raw Permalink Normal View History

import { DependencyType } from '../../getLicenses';
import { LicenseOverride } from '../types';
const fontIsoOverride: LicenseOverride = {
packageName: 'fontiso icons',
replacePackagesMatching: /^fontiso@.*$/,
mode: DependencyType.Production,
info: {
licenses: '(CC-BY-3.0 AND OFL-1.1 AND MIT)',
repository: 'https://github.com/kenangundogan/fontisto',
path: __dirname,
},
};
export default fontIsoOverride;