Github user scottyaslan commented on the issue:
https://github.com/apache/nifi-fds/pull/2
@joewitt I have clarified which items from the Angular Quickstart and add
headers to each of the files including the package-lock.json file which is
intended to be committed into source repositories, and serves various purposes
including:
Describe a single representation of a dependency tree such that teammates,
deployments, and continuous integration are guaranteed to install exactly the
same dependencies.
Provide a facility for users to "time-travel" to previous states of
node_modules without having to commit the directory itself.
To facilitate greater visibility of tree changes through readable source
control diffs.
And optimize the installation process by allowing npm to skip repeated
metadata resolutions for previously-installed packages.
---