snyk-paket-parser

Generate a dep tree given a collection of manifests

Usage no npm install needed!

<script type="module">
  import snykPaketParser from 'https://cdn.skypack.dev/snyk-paket-parser';
</script>

README

Snyk logo


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))'}
  ]