- Node.js v18 or higher
This package is available in the Node Package Repository and can be easily installed with npm or yarn.
$ npm i @nodesecure/authors
# or
$ yarn add @nodesecure/authors
import { extractAllAuthorsFromLibrary } from "@nodesecure/authors";
const flaggedAuthors = [{ name: "Blake Embrey", email: "[email protected]" }];
const authors = extractAllAuthorsFromLibrary(library, flaggedAuthors);
// Expect authors to be following this schema
// [
// {
// name: "Blake Embrey",
// email: "[email protected]",
// flagged: true,
// packages: [
// {
// homepage: "https://github.com/blakeembrey/array-flatten",
// spec: "array-flatten",
// versions: "3.0.0",
// isPublishers: false
// },
// {
// homepage: "https://github.com/pillarjs/path-to-regexp#readme",
// spec: "path-to-regexp",
// versions: "6.2.0",
// isPublishers: true
// }
// }
// ]
TBC
Thanks goes to these wonderful people (emoji key):
Vincent Dhennin 💻 👀 📖 🐛 |
Nicolas Hallaert 👀 |
Kouadio Fabrice Nguessan 🚧 |
MIT