aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cli/internal/lockfile/testdata/pnpm-absolute.yaml
blob: d39f802da9e7bd00bf915fdc5d374d2e25b8759b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
lockfileVersion: 5.4
importers:
  packages/a:
    specifiers:
      another: ^1.0.0
      "@scope/parent": ^1.0.0
      special: npm:Special@1.2.3
    dependencies:
      another: 1.0.0
      "@scope/parent": 1.0.0
      special: /Special/1.2.3

packages:
  /@scope/parent/1.0.0:
    resolution: { integrity: junk }
    dependencies:
      child: /@scope/child/1.0.0
    dev: false

  /@scope/child/1.0.0:
    resolution: { integrity: junk }
    dev: false

  /another/1.0.0:
    resolution: { integrity: junk }
    dev: false
    dependencies:
      foo: 1.0.0

  /foo/1.0.0:
    resolution: { integrity: junk }
    dev: false
    dependencies:
      Special: 1.2.3

  /Special/1.2.3:
    resolution: { integrity: junk }
    dev: false