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: 37c28cdc1a950f1be6f0464451242beddb3e6fb1 (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
{
  "name": "@pkgexports/name",
  "main": "./asdf.js",
  "exports": {
    "./hole": "./lib/hole.js",
    "./space": "./sp%20ce.js",
    "./valid-cjs": "./asdf.js",
    "./sub/": "./",
    "./belowdir/": "../belowdir/",
    "./belowfile": "../belowfile",
    "./missingtrailer/": ".",
    "./null": null,
    "./invalid1": {},
    "./invalid2": 1234,
    "./invalid3": "",
    "./invalid4": {},
    "./fallbackdir/": [[], null, {}, "builtin:x/", "./fallbackfile", "./"],
    "./fallbackfile": [[], null, {}, "builtin:x", "./asdf.js"],
    "./nofallback1": [],
    "./nofallback2": [null, {}, "builtin:x"],
    "./nodemodules": "./node_modules/internalpkg/x.js",
    "./condition": [{ "require": "./sp ce.js" }, "./asdf.js"]
  }
}