snyk-paket-parser
v1.6.0
Published
Generate a dep tree given a collection of manifests
Downloads
101,135
Readme
Snyk helps you find, fix and monitor for known vulnerabilities in your dependencies, both on an ad hoc basis and as part of your CI (Build) system.
Snyk Paket Parser
This parser processes a paket.lock
and returns a flat list of dependencies.
For example:
Input paket.lock
:
Microsoft.CSharp (4.5) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0))
Output:
[
{ name: 'Microsoft.CSharp', version: '4.5' restriction: '|| (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0))'}
]