forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.85 KB
/
package.json
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"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",
"./no-addons": {
"no-addons": "./no-addons-entry.js",
"default": "./addons-entry.js"
},
"./condition": [{
"custom-condition": {
"import": "./custom-condition.mjs",
"require": "./custom-condition.js"
},
"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"
},
"./*/trailer": "./subpath/*.js",
"./*/*railer": "never",
"./*trailer": "never",
"./*/dir2/trailer": "./subpath/*/index.js",
"./a/*": "./subpath/*.js",
"./a/b/": "./nomatch/",
"./a/b*": "./subpath*.js",
"./subpath/": "./subpath/",
"./subpath/sub-*": "./subpath/dir1/*.js",
"./subpath/sub-*.js": "./subpath/dir1/*.js",
"./features/*": "./subpath/*/*.js"
}
}