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

package.json « pkgimports « es-modules « fixtures « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cebe36b350fa50eb4b23d1e2ac70f1454fb48752 (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
{
  "imports": {
    "#test": "./test.js",
    "#branch": {
      "import": "./importbranch.js",
      "require": "./requirebranch.js"
    },
    "#subpath/*": "./sub/*",
    "#subpath/*.asdf": "./test.js",
    "#external": "pkgexports/valid-cjs",
    "#external/subpath/*": "pkgexports/sub/*",
    "#external/invalidsubpath/": "pkgexports/sub",
    "#belowbase": "../belowbase",
    "#url": "some:url",
    "#null": null,
    "#nullcondition": {
      "import": {
        "default": null
      },
      "require": {
        "default": null
      },
      "default": "./test.js"
    },
    "#subpath/nullshadow/*": [null],
    "#": "./test.js",
    "#/initialslash": "./test.js",
    "#notfound": "./notfound.js",
    "#percent": "./..%2F/x.js"
  }
}