Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json « pkgexports « node_modules « fixtures « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b99e5c7b79f6a86e25f706599559458c14360216 (plain)
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
39
40
41
42
43
44
45
46
47
48
49
{
  "name": "pkg-exports",
  "exports": {
    "./hole": "./lib/hole.js",
    "./space": "./sp%20ce.js",
    "./valid-cjs": "./asdf.js",
    "./sub/": "./",
    "./belowdir/": "../belowdir/",
    "./belowfile": "../belowfile",
    "./missingtrailer/": ".",
    "./null": null,
    "./null/": null,
    "./invalid1": {},
    "./invalid2": 1234,
    "./invalid3": "",
    "./invalid4": {},
    "./invalid5": "invalid5.js",
    "./fallbackdir/": [[], null, {}, "builtin:x/", "./fallbackfile", "./"],
    "./fallbackfile": [[], null, {}, "builtin:x", "./asdf.js"],
    "./nofallback1": [],
    "./nofallback2": [null, {}, "builtin:x"],
    "./nodemodules": "./node_modules/internalpkg/x.js",
    "./condition": [{
      "custom-condition": "./custom-condition.mjs",
      "import": "///overridden",
      "require": {
        "require": {
          "nomatch": "./nothing.js"
        },
        "default": "./sp ce.js"
      },
      "default": "./asdf.js",
      "node": "./lib/hole.js",
      "import": {
        "nomatch": "./nothing.js"
      }
    }],
    "./no-ext": "./asdf",
    "./resolve-self": {
      "require": "./resolve-self.js",
      "import": "./resolve-self.mjs"
    },
    "./resolve-self-invalid": {
      "require": "./resolve-self-invalid.js",
      "import": "./resolve-self-invalid.mjs"
    },
    "./subpath/": "./subpath/"
  }
}