eurostat-barcode-generator
Version:
a simplified barcode generator tool with options
19 lines (18 loc) • 551 B
JavaScript
const pkg = require("../package.json");
module.exports = {
production: [
`Copyright (c) 2020 ~ present ${pkg.author}`,
`${pkg.name} project is licensed under the ${pkg.license} license`,
"",
`${pkg.name}, JavaScript chart library`,
pkg.homepage,
"",
`@version ${pkg.version}`
].join("\r\n"),
packaged: [
"",
"",
`All-in-one packaged file for ease use of '${pkg.name}' with dependant d3.js modules & polyfills.`,
`- ${Object.entries(pkg.dependencies).map(v => v.join(" ")).join("\r\n- ")}`
].join("\r\n")
};