@monorepolint/rules 0.5.0-alpha.13 → 0.5.0-alpha.131

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (176) hide show
  1. package/.turbo/turbo-clean.log +4 -0
  2. package/.turbo/turbo-compile-typescript.log +4 -0
  3. package/.turbo/turbo-lint.log +14 -0
  4. package/.turbo/turbo-test.log +668 -0
  5. package/.turbo/turbo-transpile-typescript.log +18 -0
  6. package/build/js/chunk-A2MUUSNE.js +26 -0
  7. package/build/js/chunk-A2MUUSNE.js.map +1 -0
  8. package/build/js/index.js +1402 -0
  9. package/build/js/index.js.map +1 -0
  10. package/build/js/public/util.js +7 -0
  11. package/build/js/public/util.js.map +1 -0
  12. package/build/tsconfig.tsbuildinfo +1 -0
  13. package/build/types/__tests__/alphabeticalScripts.spec.d.ts.map +1 -0
  14. package/build/types/__tests__/bannedDependencies.spec.d.ts +2 -0
  15. package/build/types/__tests__/bannedDependencies.spec.d.ts.map +1 -0
  16. package/build/types/__tests__/consistentDependencies.spec.d.ts.map +1 -0
  17. package/build/types/__tests__/consistentVersions.spec.d.ts +8 -0
  18. package/build/types/__tests__/consistentVersions.spec.d.ts.map +1 -0
  19. package/build/types/__tests__/fileContents.spec.d.ts.map +1 -0
  20. package/build/types/__tests__/mustSatisfyPeerDependencies.spec.d.ts +8 -0
  21. package/build/types/__tests__/mustSatisfyPeerDependencies.spec.d.ts.map +1 -0
  22. package/build/types/__tests__/nestedWorkspaces.spec.d.ts +2 -0
  23. package/build/types/__tests__/nestedWorkspaces.spec.d.ts.map +1 -0
  24. package/build/types/__tests__/packageEntry.spec.d.ts.map +1 -0
  25. package/build/types/__tests__/packageOrder.spec.d.ts.map +1 -0
  26. package/build/types/__tests__/packageScript.spec.d.ts.map +1 -0
  27. package/build/types/__tests__/requireDependency.spec.d.ts +2 -0
  28. package/build/types/__tests__/requireDependency.spec.d.ts.map +1 -0
  29. package/build/types/__tests__/utils.d.ts +81 -0
  30. package/build/types/__tests__/utils.d.ts.map +1 -0
  31. package/build/types/alphabeticalDependencies.d.ts +8 -0
  32. package/build/types/alphabeticalDependencies.d.ts.map +1 -0
  33. package/build/types/alphabeticalScripts.d.ts +8 -0
  34. package/build/types/alphabeticalScripts.d.ts.map +1 -0
  35. package/build/types/bannedDependencies.d.ts +66 -0
  36. package/build/types/bannedDependencies.d.ts.map +1 -0
  37. package/build/types/consistentDependencies.d.ts +18 -0
  38. package/build/types/consistentDependencies.d.ts.map +1 -0
  39. package/build/types/consistentVersions.d.ts +25 -0
  40. package/build/types/consistentVersions.d.ts.map +1 -0
  41. package/build/types/fileContents.d.ts +39 -0
  42. package/build/types/fileContents.d.ts.map +1 -0
  43. package/build/types/index.d.ts +20 -0
  44. package/build/types/index.d.ts.map +1 -0
  45. package/build/types/mustSatisfyPeerDependencies.d.ts +427 -0
  46. package/build/types/mustSatisfyPeerDependencies.d.ts.map +1 -0
  47. package/build/types/nestedWorkspaces.d.ts +10 -0
  48. package/build/types/nestedWorkspaces.d.ts.map +1 -0
  49. package/build/types/packageEntry.d.ts +62 -0
  50. package/build/types/packageEntry.d.ts.map +1 -0
  51. package/build/types/packageOrder.d.ts +12 -0
  52. package/build/types/packageOrder.d.ts.map +1 -0
  53. package/build/types/packageScript.d.ts +47 -0
  54. package/build/types/packageScript.d.ts.map +1 -0
  55. package/build/types/public/util.d.ts +2 -0
  56. package/build/types/public/util.d.ts.map +1 -0
  57. package/build/types/requireDependency.d.ts +50 -0
  58. package/build/types/requireDependency.d.ts.map +1 -0
  59. package/build/types/standardTsconfig.d.ts +29 -0
  60. package/build/types/standardTsconfig.d.ts.map +1 -0
  61. package/{lib → build/types}/util/checkAlpha.d.ts +2 -1
  62. package/build/types/util/checkAlpha.d.ts.map +1 -0
  63. package/build/types/util/makeDirectory.d.ts.map +1 -0
  64. package/build/types/util/makeRule.d.ts +12 -0
  65. package/build/types/util/makeRule.d.ts.map +1 -0
  66. package/build/types/util/packageDependencyGraphService.d.ts +37 -0
  67. package/build/types/util/packageDependencyGraphService.d.ts.map +1 -0
  68. package/package.json +45 -20
  69. package/src/__tests__/alphabeticalScripts.spec.ts +33 -31
  70. package/src/__tests__/bannedDependencies.spec.ts +189 -0
  71. package/src/__tests__/consistentDependencies.spec.ts +40 -15
  72. package/src/__tests__/consistentVersions.spec.ts +224 -0
  73. package/src/__tests__/fileContents.spec.ts +69 -50
  74. package/src/__tests__/mustSatisfyPeerDependencies.spec.ts +1189 -0
  75. package/src/__tests__/nestedWorkspaces.spec.ts +153 -0
  76. package/src/__tests__/packageEntry.spec.ts +127 -49
  77. package/src/__tests__/packageOrder.spec.ts +68 -53
  78. package/src/__tests__/packageScript.spec.ts +124 -98
  79. package/src/__tests__/requireDependency.spec.ts +152 -0
  80. package/src/__tests__/utils.ts +111 -19
  81. package/src/alphabeticalDependencies.ts +7 -9
  82. package/src/alphabeticalScripts.ts +7 -9
  83. package/src/bannedDependencies.ts +135 -46
  84. package/src/consistentDependencies.ts +41 -17
  85. package/src/consistentVersions.ts +141 -0
  86. package/src/fileContents.ts +45 -40
  87. package/src/index.ts +13 -9
  88. package/src/mustSatisfyPeerDependencies.ts +744 -0
  89. package/src/nestedWorkspaces.ts +60 -0
  90. package/src/packageEntry.ts +72 -28
  91. package/src/packageOrder.ts +17 -13
  92. package/src/packageScript.ts +15 -19
  93. package/src/public/util.ts +1 -0
  94. package/src/requireDependency.ts +71 -0
  95. package/src/standardTsconfig.ts +51 -27
  96. package/src/util/checkAlpha.ts +9 -6
  97. package/src/util/makeRule.ts +29 -0
  98. package/src/util/packageDependencyGraphService.ts +114 -0
  99. package/tsconfig.json +10 -2
  100. package/lib/__tests__/alphabeticalScripts.spec.d.ts.map +0 -1
  101. package/lib/__tests__/alphabeticalScripts.spec.js +0 -61
  102. package/lib/__tests__/alphabeticalScripts.spec.js.map +0 -1
  103. package/lib/__tests__/consistentDependencies.spec.d.ts.map +0 -1
  104. package/lib/__tests__/consistentDependencies.spec.js +0 -99
  105. package/lib/__tests__/consistentDependencies.spec.js.map +0 -1
  106. package/lib/__tests__/fileContents.spec.d.ts.map +0 -1
  107. package/lib/__tests__/fileContents.spec.js +0 -66
  108. package/lib/__tests__/fileContents.spec.js.map +0 -1
  109. package/lib/__tests__/packageEntry.spec.d.ts.map +0 -1
  110. package/lib/__tests__/packageEntry.spec.js +0 -99
  111. package/lib/__tests__/packageEntry.spec.js.map +0 -1
  112. package/lib/__tests__/packageOrder.spec.d.ts.map +0 -1
  113. package/lib/__tests__/packageOrder.spec.js +0 -115
  114. package/lib/__tests__/packageOrder.spec.js.map +0 -1
  115. package/lib/__tests__/packageScript.spec.d.ts.map +0 -1
  116. package/lib/__tests__/packageScript.spec.js +0 -172
  117. package/lib/__tests__/packageScript.spec.js.map +0 -1
  118. package/lib/__tests__/utils.d.ts +0 -9
  119. package/lib/__tests__/utils.d.ts.map +0 -1
  120. package/lib/__tests__/utils.js +0 -33
  121. package/lib/__tests__/utils.js.map +0 -1
  122. package/lib/alphabeticalDependencies.d.ts +0 -12
  123. package/lib/alphabeticalDependencies.d.ts.map +0 -1
  124. package/lib/alphabeticalDependencies.js +0 -21
  125. package/lib/alphabeticalDependencies.js.map +0 -1
  126. package/lib/alphabeticalScripts.d.ts +0 -12
  127. package/lib/alphabeticalScripts.d.ts.map +0 -1
  128. package/lib/alphabeticalScripts.js +0 -19
  129. package/lib/alphabeticalScripts.js.map +0 -1
  130. package/lib/bannedDependencies.d.ts +0 -15
  131. package/lib/bannedDependencies.d.ts.map +0 -1
  132. package/lib/bannedDependencies.js +0 -57
  133. package/lib/bannedDependencies.js.map +0 -1
  134. package/lib/consistentDependencies.d.ts +0 -10
  135. package/lib/consistentDependencies.d.ts.map +0 -1
  136. package/lib/consistentDependencies.js +0 -57
  137. package/lib/consistentDependencies.js.map +0 -1
  138. package/lib/fileContents.d.ts +0 -25
  139. package/lib/fileContents.d.ts.map +0 -1
  140. package/lib/fileContents.js +0 -80
  141. package/lib/fileContents.js.map +0 -1
  142. package/lib/index.d.ts +0 -16
  143. package/lib/index.d.ts.map +0 -1
  144. package/lib/index.js +0 -27
  145. package/lib/index.js.map +0 -1
  146. package/lib/packageEntry.d.ts +0 -16
  147. package/lib/packageEntry.d.ts.map +0 -1
  148. package/lib/packageEntry.js +0 -40
  149. package/lib/packageEntry.js.map +0 -1
  150. package/lib/packageOrder.d.ts +0 -12
  151. package/lib/packageOrder.d.ts.map +0 -1
  152. package/lib/packageOrder.js +0 -103
  153. package/lib/packageOrder.js.map +0 -1
  154. package/lib/packageScript.d.ts +0 -25
  155. package/lib/packageScript.d.ts.map +0 -1
  156. package/lib/packageScript.js +0 -89
  157. package/lib/packageScript.js.map +0 -1
  158. package/lib/standardTsconfig.d.ts +0 -33
  159. package/lib/standardTsconfig.d.ts.map +0 -1
  160. package/lib/standardTsconfig.js +0 -98
  161. package/lib/standardTsconfig.js.map +0 -1
  162. package/lib/util/checkAlpha.d.ts.map +0 -1
  163. package/lib/util/checkAlpha.js +0 -47
  164. package/lib/util/checkAlpha.js.map +0 -1
  165. package/lib/util/makeDirectory.d.ts.map +0 -1
  166. package/lib/util/makeDirectory.js +0 -27
  167. package/lib/util/makeDirectory.js.map +0 -1
  168. package/tsconfig.tsbuildinfo +0 -2510
  169. /package/{lib → build/types}/__tests__/alphabeticalScripts.spec.d.ts +0 -0
  170. /package/{lib → build/types}/__tests__/consistentDependencies.spec.d.ts +0 -0
  171. /package/{lib → build/types}/__tests__/fileContents.spec.d.ts +0 -0
  172. /package/{lib → build/types}/__tests__/packageEntry.spec.d.ts +0 -0
  173. /package/{lib → build/types}/__tests__/packageOrder.spec.d.ts +0 -0
  174. /package/{lib → build/types}/__tests__/packageScript.spec.d.ts +0 -0
  175. /package/{lib → build/types}/util/makeDirectory.d.ts +0 -0
  176. /package/{jest.config.js → jest.config.cjs} +0 -0
@@ -1,2510 +0,0 @@
1
- {
2
- "program": {
3
- "fileInfos": {
4
- "../../node_modules/typescript/lib/lib.es5.d.ts": {
5
- "version": "ff5688d6b2fcfef06842a395d7ff4d5730d45b724d4c48913118c889829052a1",
6
- "signature": "ff5688d6b2fcfef06842a395d7ff4d5730d45b724d4c48913118c889829052a1"
7
- },
8
- "../../node_modules/typescript/lib/lib.es2015.d.ts": {
9
- "version": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96",
10
- "signature": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96"
11
- },
12
- "../../node_modules/typescript/lib/lib.es2016.d.ts": {
13
- "version": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1",
14
- "signature": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1"
15
- },
16
- "../../node_modules/typescript/lib/lib.es2017.d.ts": {
17
- "version": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743",
18
- "signature": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743"
19
- },
20
- "../../node_modules/typescript/lib/lib.es2018.d.ts": {
21
- "version": "9c67dcc7ca897b61f58d57d487bc9f07950546e5ac8701cbc41a8a4fec48b091",
22
- "signature": "9c67dcc7ca897b61f58d57d487bc9f07950546e5ac8701cbc41a8a4fec48b091"
23
- },
24
- "../../node_modules/typescript/lib/lib.es2015.core.d.ts": {
25
- "version": "4ab19088d508f9e62bfc61c157e8a65b2afaefa251ecca315e7d20b5b97b256f",
26
- "signature": "4ab19088d508f9e62bfc61c157e8a65b2afaefa251ecca315e7d20b5b97b256f"
27
- },
28
- "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": {
29
- "version": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0",
30
- "signature": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0"
31
- },
32
- "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": {
33
- "version": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122",
34
- "signature": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122"
35
- },
36
- "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": {
37
- "version": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210",
38
- "signature": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210"
39
- },
40
- "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": {
41
- "version": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2",
42
- "signature": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2"
43
- },
44
- "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": {
45
- "version": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe",
46
- "signature": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe"
47
- },
48
- "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": {
49
- "version": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976",
50
- "signature": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976"
51
- },
52
- "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": {
53
- "version": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230",
54
- "signature": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230"
55
- },
56
- "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": {
57
- "version": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303",
58
- "signature": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303"
59
- },
60
- "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": {
61
- "version": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0",
62
- "signature": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0"
63
- },
64
- "../../node_modules/typescript/lib/lib.es2017.object.d.ts": {
65
- "version": "ff8ad203e83338289b0f5defc1a5b5c253fb7d251b464db497383f915a0df3f4",
66
- "signature": "ff8ad203e83338289b0f5defc1a5b5c253fb7d251b464db497383f915a0df3f4"
67
- },
68
- "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": {
69
- "version": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f",
70
- "signature": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f"
71
- },
72
- "../../node_modules/typescript/lib/lib.es2017.string.d.ts": {
73
- "version": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c",
74
- "signature": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c"
75
- },
76
- "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": {
77
- "version": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6",
78
- "signature": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6"
79
- },
80
- "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": {
81
- "version": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46",
82
- "signature": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46"
83
- },
84
- "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": {
85
- "version": "93c0c9ae60e46e4d1389dd33936bbfa24d9c66ef83a1569fcbb67a46432405e0",
86
- "signature": "93c0c9ae60e46e4d1389dd33936bbfa24d9c66ef83a1569fcbb67a46432405e0"
87
- },
88
- "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": {
89
- "version": "16c06e535d8e03be7c35735f9ce92c9e591cfea50cdcd0ac1353a0b85c60ab10",
90
- "signature": "16c06e535d8e03be7c35735f9ce92c9e591cfea50cdcd0ac1353a0b85c60ab10"
91
- },
92
- "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": {
93
- "version": "1b820b57379c726f94af50cd60053674af53ff9d079c1563cc70071e8b757dd0",
94
- "signature": "1b820b57379c726f94af50cd60053674af53ff9d079c1563cc70071e8b757dd0"
95
- },
96
- "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": {
97
- "version": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62",
98
- "signature": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62"
99
- },
100
- "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": {
101
- "version": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8",
102
- "signature": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8"
103
- },
104
- "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": {
105
- "version": "f6e0c89daaf72eac38dfb1d5ef0972183f7f26a68da15bfe5bcb7cfccf0c7db8",
106
- "signature": "f6e0c89daaf72eac38dfb1d5ef0972183f7f26a68da15bfe5bcb7cfccf0c7db8"
107
- },
108
- "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": {
109
- "version": "63b66918290d794f73832a6d0325be5026236674fe8c0cb0b68d162000d7bbe8",
110
- "signature": "63b66918290d794f73832a6d0325be5026236674fe8c0cb0b68d162000d7bbe8"
111
- },
112
- "../../node_modules/tslib/tslib.d.ts": {
113
- "version": "4984b48a97160eac5282ffeae690315420a626de83ccf6045c36d934c5c957c0",
114
- "signature": "4984b48a97160eac5282ffeae690315420a626de83ccf6045c36d934c5c957c0"
115
- },
116
- "../utils/lib/getWorkspacePackageDirs.d.ts": {
117
- "version": "bc84cc57e255a237af42d0641f38dcc13f344aadbf4696faf27e334507904fd9",
118
- "signature": "bc84cc57e255a237af42d0641f38dcc13f344aadbf4696faf27e334507904fd9"
119
- },
120
- "../utils/lib/readJson.d.ts": {
121
- "version": "80820804cb4c0067c2c4f993cdd2fc7cf3ddab882c32c0dc2aae73a2a511b9ac",
122
- "signature": "80820804cb4c0067c2c4f993cdd2fc7cf3ddab882c32c0dc2aae73a2a511b9ac"
123
- },
124
- "../utils/lib/writeJson.d.ts": {
125
- "version": "bc76f80a06286f0502c0e9613f530c10f3c876ed333989b5cb8d2a5fc2a41ac6",
126
- "signature": "bc76f80a06286f0502c0e9613f530c10f3c876ed333989b5cb8d2a5fc2a41ac6"
127
- },
128
- "../utils/lib/mutateJson.d.ts": {
129
- "version": "274f549fb25f214b27461b2386c06bab866c2384d5a38227a58b165c4122cc71",
130
- "signature": "274f549fb25f214b27461b2386c06bab866c2384d5a38227a58b165c4122cc71"
131
- },
132
- "../utils/lib/PackageJson.d.ts": {
133
- "version": "a41984c40bfd2af09be5aa0d06b3c30103d499148fd1a16dbd17f0670a9f69df",
134
- "signature": "a41984c40bfd2af09be5aa0d06b3c30103d499148fd1a16dbd17f0670a9f69df"
135
- },
136
- "../utils/lib/findWorkspaceDir.d.ts": {
137
- "version": "40c9284c7e64cd84580808405480f342fc3cad18ee1a308beb1c9761e783c4b2",
138
- "signature": "40c9284c7e64cd84580808405480f342fc3cad18ee1a308beb1c9761e783c4b2"
139
- },
140
- "../utils/lib/getPackageNameToDir.d.ts": {
141
- "version": "418c59c1b0fec31705594cde3bc0f617d933adbc8833e1afd3a3414a12bc31e4",
142
- "signature": "418c59c1b0fec31705594cde3bc0f617d933adbc8833e1afd3a3414a12bc31e4"
143
- },
144
- "../utils/lib/index.d.ts": {
145
- "version": "ad1ea90aa4d4144e31f7e3f7bb1a128aff33a2e8f240ca6cd64e350d29d4a6f5",
146
- "signature": "ad1ea90aa4d4144e31f7e3f7bb1a128aff33a2e8f240ca6cd64e350d29d4a6f5"
147
- },
148
- "../../node_modules/runtypes/lib/types/literal.d.ts": {
149
- "version": "28f18fd74dc573d9f48bb98e9423fb3c9379ca239fe565edb190db7fb4048cc0",
150
- "signature": "28f18fd74dc573d9f48bb98e9423fb3c9379ca239fe565edb190db7fb4048cc0"
151
- },
152
- "../../node_modules/runtypes/lib/types/unknown.d.ts": {
153
- "version": "3123f2c69d51a40a561e9f99c8d15a7038621081abd5f47a71210096ac8e1814",
154
- "signature": "3123f2c69d51a40a561e9f99c8d15a7038621081abd5f47a71210096ac8e1814"
155
- },
156
- "../../node_modules/runtypes/lib/types/constraint.d.ts": {
157
- "version": "0b5957de5cc6a3e6ca6afa538321a53d4dab33a1fc0f47198c8e9194811828d9",
158
- "signature": "0b5957de5cc6a3e6ca6afa538321a53d4dab33a1fc0f47198c8e9194811828d9"
159
- },
160
- "../../node_modules/runtypes/lib/types/instanceof.d.ts": {
161
- "version": "2205fa8d555344622173f9773a6ad41cdafebf5c6acdfd79e30847b2f99a34cf",
162
- "signature": "2205fa8d555344622173f9773a6ad41cdafebf5c6acdfd79e30847b2f99a34cf"
163
- },
164
- "../../node_modules/runtypes/lib/reflect.d.ts": {
165
- "version": "7664edccd28ad386b75bd2c84ba228bab654a8c146f582e8e6bf180d6b09983e",
166
- "signature": "7664edccd28ad386b75bd2c84ba228bab654a8c146f582e8e6bf180d6b09983e"
167
- },
168
- "../../node_modules/runtypes/lib/runtype.d.ts": {
169
- "version": "775b16c834dc4006b4dfbc338b0197d7aacb7c44db9aa8988220e47a90a2964e",
170
- "signature": "775b16c834dc4006b4dfbc338b0197d7aacb7c44db9aa8988220e47a90a2964e"
171
- },
172
- "../../node_modules/runtypes/lib/result.d.ts": {
173
- "version": "f24165b129a43b9dfde8eda4acbadd03174694d85c14148501d635435dc2ede6",
174
- "signature": "f24165b129a43b9dfde8eda4acbadd03174694d85c14148501d635435dc2ede6"
175
- },
176
- "../../node_modules/runtypes/lib/contract.d.ts": {
177
- "version": "191600c3866113ec1f7fb750a262ad93c2cfb6fb2fabb0e27c7b261d6d43be34",
178
- "signature": "191600c3866113ec1f7fb750a262ad93c2cfb6fb2fabb0e27c7b261d6d43be34"
179
- },
180
- "../../node_modules/runtypes/lib/match.d.ts": {
181
- "version": "524ce85b36faa800b706d65b33a1f9ae81ac3512b70c1a51c5bd1ebb26386580",
182
- "signature": "524ce85b36faa800b706d65b33a1f9ae81ac3512b70c1a51c5bd1ebb26386580"
183
- },
184
- "../../node_modules/runtypes/lib/errors.d.ts": {
185
- "version": "6aed0b050082f51830f2a53ce7619dc8e3ed5b91c2ee9dfb7ebf20108af7b863",
186
- "signature": "6aed0b050082f51830f2a53ce7619dc8e3ed5b91c2ee9dfb7ebf20108af7b863"
187
- },
188
- "../../node_modules/runtypes/lib/types/never.d.ts": {
189
- "version": "e70e5b1e9f5c8fb057dccd80b24ac684043c615f888c06d6a44551e5134535e8",
190
- "signature": "e70e5b1e9f5c8fb057dccd80b24ac684043c615f888c06d6a44551e5134535e8"
191
- },
192
- "../../node_modules/runtypes/lib/types/void.d.ts": {
193
- "version": "bce521f55b95d2a5b0857efdfbec2f50fa491dc80b1d1f8fd1a98d2581afc498",
194
- "signature": "bce521f55b95d2a5b0857efdfbec2f50fa491dc80b1d1f8fd1a98d2581afc498"
195
- },
196
- "../../node_modules/runtypes/lib/types/boolean.d.ts": {
197
- "version": "d3f20af05d538b2f5e387ffe9a10fcc5f3bb32bc04671bd08974faa796a59cad",
198
- "signature": "d3f20af05d538b2f5e387ffe9a10fcc5f3bb32bc04671bd08974faa796a59cad"
199
- },
200
- "../../node_modules/runtypes/lib/types/number.d.ts": {
201
- "version": "1773602916bee106c96ec3ae20a76888d66786b57efa319bce01ac0888465bfe",
202
- "signature": "1773602916bee106c96ec3ae20a76888d66786b57efa319bce01ac0888465bfe"
203
- },
204
- "../../node_modules/runtypes/lib/types/string.d.ts": {
205
- "version": "abe21aeda5df689f1f74e255a84a9457d17f0532105832ecf416b5f3e42b54ff",
206
- "signature": "abe21aeda5df689f1f74e255a84a9457d17f0532105832ecf416b5f3e42b54ff"
207
- },
208
- "../../node_modules/runtypes/lib/types/symbol.d.ts": {
209
- "version": "3abea4711581ed7d6d4b49540ba7b24dc11c60e01dbe75041ca4a8dde6c5d65a",
210
- "signature": "3abea4711581ed7d6d4b49540ba7b24dc11c60e01dbe75041ca4a8dde6c5d65a"
211
- },
212
- "../../node_modules/runtypes/lib/types/array.d.ts": {
213
- "version": "e000b8a0c99e3c2c14a438dba765c267b1b8c9bc14e68a89a0fe3c943f6ca1aa",
214
- "signature": "e000b8a0c99e3c2c14a438dba765c267b1b8c9bc14e68a89a0fe3c943f6ca1aa"
215
- },
216
- "../../node_modules/runtypes/lib/types/tuple.d.ts": {
217
- "version": "dc940bdc74a464c57c4978e572cefe9a41357aa79a58d4876c0084159d08755e",
218
- "signature": "dc940bdc74a464c57c4978e572cefe9a41357aa79a58d4876c0084159d08755e"
219
- },
220
- "../../node_modules/runtypes/lib/types/record.d.ts": {
221
- "version": "0223414abd318bfc529dbef5c73e2a27f77716b9ae12872f8053d0d13f6f618d",
222
- "signature": "0223414abd318bfc529dbef5c73e2a27f77716b9ae12872f8053d0d13f6f618d"
223
- },
224
- "../../node_modules/runtypes/lib/types/partial.d.ts": {
225
- "version": "91d19ee6c64fdef8e82b6e30314bc8816fbf045c05355e60196f6c06d1821577",
226
- "signature": "91d19ee6c64fdef8e82b6e30314bc8816fbf045c05355e60196f6c06d1821577"
227
- },
228
- "../../node_modules/runtypes/lib/types/dictionary.d.ts": {
229
- "version": "e7e9500bc605c6176ee66366bfe820e46df6d3c2e50bbc7f3354f86723dd8c9c",
230
- "signature": "e7e9500bc605c6176ee66366bfe820e46df6d3c2e50bbc7f3354f86723dd8c9c"
231
- },
232
- "../../node_modules/runtypes/lib/types/union.d.ts": {
233
- "version": "19ca0d70cf8d63f173a1b4e7135cfba548aa49eeb74f9b65b1b68b6628c69477",
234
- "signature": "19ca0d70cf8d63f173a1b4e7135cfba548aa49eeb74f9b65b1b68b6628c69477"
235
- },
236
- "../../node_modules/runtypes/lib/types/intersect.d.ts": {
237
- "version": "5d6688193be967219269629ac49e44274cb58e2f37bec940bcad2f449930bf10",
238
- "signature": "5d6688193be967219269629ac49e44274cb58e2f37bec940bcad2f449930bf10"
239
- },
240
- "../../node_modules/runtypes/lib/types/function.d.ts": {
241
- "version": "3055642b3986218f66301a7ec1ddd5c77bc836437cb5ac66186eb079e4dd9e07",
242
- "signature": "3055642b3986218f66301a7ec1ddd5c77bc836437cb5ac66186eb079e4dd9e07"
243
- },
244
- "../../node_modules/runtypes/lib/types/lazy.d.ts": {
245
- "version": "1cc1d6bd40cc74ccc23e640831185e227e9de8059c3ce7dc724e41f4466b97cf",
246
- "signature": "1cc1d6bd40cc74ccc23e640831185e227e9de8059c3ce7dc724e41f4466b97cf"
247
- },
248
- "../../node_modules/runtypes/lib/types/brand.d.ts": {
249
- "version": "b728f146c4037882be67ffb6d95e5595d3100e58c9698d8feca790b87d5205e2",
250
- "signature": "b728f146c4037882be67ffb6d95e5595d3100e58c9698d8feca790b87d5205e2"
251
- },
252
- "../../node_modules/runtypes/lib/decorator.d.ts": {
253
- "version": "6449a3bd3aafaa7d22d0881ea79507b1dcc95e0c0c62ee1d58852f0dfa77dfea",
254
- "signature": "6449a3bd3aafaa7d22d0881ea79507b1dcc95e0c0c62ee1d58852f0dfa77dfea"
255
- },
256
- "../../node_modules/runtypes/lib/index.d.ts": {
257
- "version": "05222a9e8ad715113b55583388680b7d1324819f7a07dd86f6253cfabde902ba",
258
- "signature": "05222a9e8ad715113b55583388680b7d1324819f7a07dd86f6253cfabde902ba"
259
- },
260
- "../core/lib/Config.d.ts": {
261
- "version": "56a1711e111a6d804c110abb352d71fcc6d68b3ca2723bc71b92ee724fb88c32",
262
- "signature": "56a1711e111a6d804c110abb352d71fcc6d68b3ca2723bc71b92ee724fb88c32"
263
- },
264
- "../core/lib/PackageContext.d.ts": {
265
- "version": "3fa3d5a3e86b81661fe2992047b26a7fd6ded6daac47a0a92cfd7487a3b075ed",
266
- "signature": "3fa3d5a3e86b81661fe2992047b26a7fd6ded6daac47a0a92cfd7487a3b075ed"
267
- },
268
- "../core/lib/WorkspaceContext.d.ts": {
269
- "version": "22e3aada51de9c4383af1ee6730dc8d6a2ff82c2ffda26d46d5e11866257094c",
270
- "signature": "22e3aada51de9c4383af1ee6730dc8d6a2ff82c2ffda26d46d5e11866257094c"
271
- },
272
- "../core/lib/Context.d.ts": {
273
- "version": "681fc6b5ec6c990f73e8a2f0c23bf19119a1ccff48db7e208b01e2097c394d5e",
274
- "signature": "681fc6b5ec6c990f73e8a2f0c23bf19119a1ccff48db7e208b01e2097c394d5e"
275
- },
276
- "../core/lib/check.d.ts": {
277
- "version": "4cf16fe44d93ae1cc09a2d78c178beb28f6788152f2128a331ec92ce54104365",
278
- "signature": "4cf16fe44d93ae1cc09a2d78c178beb28f6788152f2128a331ec92ce54104365"
279
- },
280
- "../core/lib/resolveConfig.d.ts": {
281
- "version": "ff0e5dd8afa4c183d8bc57feae4395840684c353f6d8d7b5c2bad3bb029d901c",
282
- "signature": "ff0e5dd8afa4c183d8bc57feae4395840684c353f6d8d7b5c2bad3bb029d901c"
283
- },
284
- "../core/lib/index.d.ts": {
285
- "version": "4f63ff35666a61400f8be9d049d191fcc849f23c5bdd531280af1f7dcce89203",
286
- "signature": "4f63ff35666a61400f8be9d049d191fcc849f23c5bdd531280af1f7dcce89203"
287
- },
288
- "../../node_modules/jest-diff/build/types.d.ts": {
289
- "version": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7",
290
- "signature": "71ba0678a3c647f5c0706ae975c031ace0d464e60f9ce56eaa7f1678d065aab7"
291
- },
292
- "../../node_modules/jest-diff/build/index.d.ts": {
293
- "version": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4",
294
- "signature": "162c6f2951bd80ae6e16679378f382200b26bba9de8f255af3a2895fbfa670b4"
295
- },
296
- "./src/util/checkAlpha.ts": {
297
- "version": "220d3c959ee1e15d378f83168bbbc8426a892526e091de81e5d938c4f0bd438c",
298
- "signature": "a28c63fa80e50f7421eb1f0f1e01cab553867cec9645c3f34b6fd44ee385af12"
299
- },
300
- "./src/alphabeticalDependencies.ts": {
301
- "version": "ff930fb23cdcd9f368cb0f8ec82d652c3395db601a5714ec840ad9db4c0aa5e5",
302
- "signature": "203c17645a1fb3341e37023bee72335631d9cfb8fcdd34bf6315f613f64fd380"
303
- },
304
- "./src/alphabeticalScripts.ts": {
305
- "version": "fa56dd28a319bb56a530123cce4590680f0552ac262204e44ccd3ba4d5a4a796",
306
- "signature": "c827c8004ffb53876ea92651c5a20f16016353b22bcabb1a38e11ad4b3ff63d4"
307
- },
308
- "../../node_modules/@types/minimatch/index.d.ts": {
309
- "version": "1d1e6bd176eee5970968423d7e215bfd66828b6db8d54d17afec05a831322633",
310
- "signature": "1d1e6bd176eee5970968423d7e215bfd66828b6db8d54d17afec05a831322633"
311
- },
312
- "./src/bannedDependencies.ts": {
313
- "version": "e28c5c823ac5bda3a28f4c559a440f0b72ed763b3f3455c602688ae3d7b5ddbe",
314
- "signature": "4d9d629faa1c34ad3ef840a8c2ace43c6bdd180018272037dfd857536d725c7c"
315
- },
316
- "./src/consistentDependencies.ts": {
317
- "version": "1b35121fafdab30b159ccef8f56a071866765ef8a7a05e41221be452293130fe",
318
- "signature": "536f6051ee791d1c8587e23ca093cbecf036b4c5ee1e6fad72b1b69ee97ce387"
319
- },
320
- "./src/util/makeDirectory.ts": {
321
- "version": "d57f95334ee89d7f5488dca8c1b77587e33978fb149479437db07ce64fe791d9",
322
- "signature": "7acaff7f737c1e765410bee7f45c124c8d116eb44af577fbcc12dcf77fd4d54a"
323
- },
324
- "./src/fileContents.ts": {
325
- "version": "1a7ede75f864c689570bd3a49e036dd9914d44de79e9d832e2f7aa54da13f6a6",
326
- "signature": "b3e10b3676660c080e42034827dff06ebc6d278319d539fae66170628fbe7f16"
327
- },
328
- "./src/packageOrder.ts": {
329
- "version": "754e13f997ffe7f8340fc641fc684a3921c771afb1c3dd573b6e380aeea82127",
330
- "signature": "ba19e94e37cd4d8f73fbb1fef145dce5fb43d84838215d93b88ce56541853228"
331
- },
332
- "./src/packageEntry.ts": {
333
- "version": "789c4c602c247dfd5742a3e291ba07ba96e78316db6242cf8c61d17028941a40",
334
- "signature": "6f7233f1d5d09f0d67067a767016aa2aed27034547245894c8881d96faedff77"
335
- },
336
- "./src/packageScript.ts": {
337
- "version": "963547a06f265641b7475a6e7f1e6e5890823b77b85f0b7ad1e28965bc4dae3a",
338
- "signature": "3c75f4c981f002eb86dbc02f4accca5ecf3a888fc608459ff40bb52aed260e0a"
339
- },
340
- "./src/standardTsconfig.ts": {
341
- "version": "bf28752473929c4523e37486f37c935a121aa7b19df629a8798693c5940e979e",
342
- "signature": "a0f13a3996088385d55bcfe1be9723513ba9aaf57643efc69bbddcb843f5f15c"
343
- },
344
- "./src/index.ts": {
345
- "version": "bd036e402e6ebbce27157840a2b8d63c89c15fc8f6f001655f51d1f70de73c4e",
346
- "signature": "bdb9c28797f66159d19e38d2175afb6e33563f99885e875e6f3fc48a8b862bf4"
347
- },
348
- "./src/__tests__/utils.ts": {
349
- "version": "08fc6efd9abcf1eaa7a7283386a9d67ca980dc4ae24a34ae04aa01e68f48d052",
350
- "signature": "7ae4ef5bca90dc35a82360ccea5b2f569ce2be3cb55a455cc8116d8d6f978eb8"
351
- },
352
- "./src/__tests__/alphabeticalScripts.spec.ts": {
353
- "version": "3b4cf756ba723097f440194a68aa07dfdfac68ab65477af07f7b9fac4ad4a441",
354
- "signature": "941fdc886c097446252cd41c6e43239f02d95bd9792341153b88934de3a8eb1e"
355
- },
356
- "../../node_modules/@types/tmp/index.d.ts": {
357
- "version": "5685ea2eb87a7a405e106c5bea5936fdaed1184eaaf9bd075d27c40b4984eea6",
358
- "signature": "5685ea2eb87a7a405e106c5bea5936fdaed1184eaaf9bd075d27c40b4984eea6"
359
- },
360
- "./src/__tests__/consistentDependencies.spec.ts": {
361
- "version": "de96f00cb37e7347b9c382afffa4da932af3b7660100f7a21502130b64b77ff1",
362
- "signature": "dca97268bccfd894facf85f6621004c5f331db299abc141ed709974bd4fd1c8b"
363
- },
364
- "./src/__tests__/fileContents.spec.ts": {
365
- "version": "5980c3b62be8b3204d03ba0003347b4a06e506ff8785f110e634e4c60ec78a14",
366
- "signature": "33c3e863129dd76a3f8500c3feb14604a74b91e5581f8464fc7b2123cfa90fe8"
367
- },
368
- "./src/__tests__/packageEntry.spec.ts": {
369
- "version": "1973d9f810995b2bf68044a780a78f405115956da9979e912b731ab56556e5e2",
370
- "signature": "79ed8249690a08b41f891a590bbf10d3d8a548886ee52b72f172666790782116"
371
- },
372
- "./src/__tests__/packageOrder.spec.ts": {
373
- "version": "8eb16f7a4181f79bc087fd8a3429e40bb83233db2a65e13e91c76b821a22f8ba",
374
- "signature": "22cc96f09dfbf4020dcaabc55e5e9b93d7b9255377b164fd0a6700c31d229083"
375
- },
376
- "./src/__tests__/packageScript.spec.ts": {
377
- "version": "0bc82230b5fdc1eb14129783abaa82586583fe5749af2d6bfd35ee0115c2ed7d",
378
- "signature": "11a74b9a936140486a13871fbd1e9cf2ad764753f54106c82a52fa1cf922234d"
379
- },
380
- "../../node_modules/@babel/types/lib/index.d.ts": {
381
- "version": "bc12492fa90cd2ad3f73c10efa597503dbf59ebac0e3c9728cc10adaad6b0b87",
382
- "signature": "bc12492fa90cd2ad3f73c10efa597503dbf59ebac0e3c9728cc10adaad6b0b87"
383
- },
384
- "../../node_modules/@types/babel__generator/index.d.ts": {
385
- "version": "19fb2161edf60fbe73ee3650c1cee889df0525ed852eff2d5fa6e5480c132ae3",
386
- "signature": "19fb2161edf60fbe73ee3650c1cee889df0525ed852eff2d5fa6e5480c132ae3"
387
- },
388
- "../../node_modules/@types/babel__traverse/index.d.ts": {
389
- "version": "44d81327b8fbb2d7ca0701f5b7bb73e48036eb99a87356acf95f19ed96e907aa",
390
- "signature": "44d81327b8fbb2d7ca0701f5b7bb73e48036eb99a87356acf95f19ed96e907aa"
391
- },
392
- "../../node_modules/@babel/parser/typings/babel-parser.d.ts": {
393
- "version": "67fb81fcd13edc5410665fa72892dd0878654b54946e8b0f10af5adc234bfe8f",
394
- "signature": "67fb81fcd13edc5410665fa72892dd0878654b54946e8b0f10af5adc234bfe8f"
395
- },
396
- "../../node_modules/@types/babel__template/index.d.ts": {
397
- "version": "3e0a34f7207431d967dc32d593d1cda0c23975e9484bc8895b39d96ffca4a0d8",
398
- "signature": "3e0a34f7207431d967dc32d593d1cda0c23975e9484bc8895b39d96ffca4a0d8"
399
- },
400
- "../../node_modules/@types/babel__core/index.d.ts": {
401
- "version": "8f279d393b3572c5c0a8428d46d00281c38a5ef52dc9dd513fc861c31a5d6420",
402
- "signature": "8f279d393b3572c5c0a8428d46d00281c38a5ef52dc9dd513fc861c31a5d6420"
403
- },
404
- "../../node_modules/@types/events/index.d.ts": {
405
- "version": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935",
406
- "signature": "400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935"
407
- },
408
- "../../node_modules/@types/node/globals.d.ts": {
409
- "version": "e4461b72726848da76a31153b6b01af5e0be3b08dbfa2ec5741ad302eb20f2ed",
410
- "signature": "e4461b72726848da76a31153b6b01af5e0be3b08dbfa2ec5741ad302eb20f2ed"
411
- },
412
- "../../node_modules/@types/node/assert.d.ts": {
413
- "version": "58a52f282f1dad18179023804c1f3a7536bf875748a0a314abd43f60fd5b244f",
414
- "signature": "58a52f282f1dad18179023804c1f3a7536bf875748a0a314abd43f60fd5b244f"
415
- },
416
- "../../node_modules/@types/node/async_hooks.d.ts": {
417
- "version": "1305b079a057355f496bdde048716189178877a6b4fe0e9267a46af67f8c7561",
418
- "signature": "1305b079a057355f496bdde048716189178877a6b4fe0e9267a46af67f8c7561"
419
- },
420
- "../../node_modules/@types/node/buffer.d.ts": {
421
- "version": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878",
422
- "signature": "61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878"
423
- },
424
- "../../node_modules/@types/node/child_process.d.ts": {
425
- "version": "fbf717914b6e7d87d969b13c646b5d15dca61c9b89ea48e97a1513809445b003",
426
- "signature": "fbf717914b6e7d87d969b13c646b5d15dca61c9b89ea48e97a1513809445b003"
427
- },
428
- "../../node_modules/@types/node/cluster.d.ts": {
429
- "version": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a",
430
- "signature": "ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a"
431
- },
432
- "../../node_modules/@types/node/console.d.ts": {
433
- "version": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d",
434
- "signature": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d"
435
- },
436
- "../../node_modules/@types/node/constants.d.ts": {
437
- "version": "8ce9418c78d3c1fb703ddbe38c936d34a989ba278666979826590dfa0772a424",
438
- "signature": "8ce9418c78d3c1fb703ddbe38c936d34a989ba278666979826590dfa0772a424"
439
- },
440
- "../../node_modules/@types/node/crypto.d.ts": {
441
- "version": "ab2319db789867778ccd5f2b5e6cd559e716d1cd3726b0e03724af463eddf78b",
442
- "signature": "ab2319db789867778ccd5f2b5e6cd559e716d1cd3726b0e03724af463eddf78b"
443
- },
444
- "../../node_modules/@types/node/dgram.d.ts": {
445
- "version": "7954df44c35d39b851b996fdc1af0a252e4e23f862abfef388a058203bb94c30",
446
- "signature": "7954df44c35d39b851b996fdc1af0a252e4e23f862abfef388a058203bb94c30"
447
- },
448
- "../../node_modules/@types/node/dns.d.ts": {
449
- "version": "ef226a42de7022eacdfa0f15aabf73b46c47af93044c8ebfab8aa8e3cf6c330c",
450
- "signature": "ef226a42de7022eacdfa0f15aabf73b46c47af93044c8ebfab8aa8e3cf6c330c"
451
- },
452
- "../../node_modules/@types/node/domain.d.ts": {
453
- "version": "d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa",
454
- "signature": "d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa"
455
- },
456
- "../../node_modules/@types/node/events.d.ts": {
457
- "version": "0be551fde848d5adde38731272ee980bda2bde0f8bf2a76ce99e01b86985546c",
458
- "signature": "0be551fde848d5adde38731272ee980bda2bde0f8bf2a76ce99e01b86985546c"
459
- },
460
- "../../node_modules/@types/node/fs.d.ts": {
461
- "version": "6bd120d96313412155ae7d4766d586a38576a058b3e269be2152db7030fbc882",
462
- "signature": "6bd120d96313412155ae7d4766d586a38576a058b3e269be2152db7030fbc882"
463
- },
464
- "../../node_modules/@types/node/http.d.ts": {
465
- "version": "db6de49919cf11a300f9203371d8e251d58558c509b3b92cee3badadfdb34d36",
466
- "signature": "db6de49919cf11a300f9203371d8e251d58558c509b3b92cee3badadfdb34d36"
467
- },
468
- "../../node_modules/@types/node/http2.d.ts": {
469
- "version": "745494f14a9e133beee622ca51cdc59c8896ff77c9f3cd017a4ce735b30dac2d",
470
- "signature": "745494f14a9e133beee622ca51cdc59c8896ff77c9f3cd017a4ce735b30dac2d"
471
- },
472
- "../../node_modules/@types/node/https.d.ts": {
473
- "version": "dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6",
474
- "signature": "dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6"
475
- },
476
- "../../node_modules/@types/node/inspector.d.ts": {
477
- "version": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c",
478
- "signature": "4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c"
479
- },
480
- "../../node_modules/@types/node/module.d.ts": {
481
- "version": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66",
482
- "signature": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66"
483
- },
484
- "../../node_modules/@types/node/net.d.ts": {
485
- "version": "1224b49e2c8f3b4ed618969d2989412d1282536d2a6a31c30c84d5da01d8b8e4",
486
- "signature": "1224b49e2c8f3b4ed618969d2989412d1282536d2a6a31c30c84d5da01d8b8e4"
487
- },
488
- "../../node_modules/@types/node/os.d.ts": {
489
- "version": "1a6016bd905855b2b45881e9edbd7ab8c7175f8bcbb711ff06989c4bcdc75486",
490
- "signature": "1a6016bd905855b2b45881e9edbd7ab8c7175f8bcbb711ff06989c4bcdc75486"
491
- },
492
- "../../node_modules/@types/node/path.d.ts": {
493
- "version": "5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36",
494
- "signature": "5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36"
495
- },
496
- "../../node_modules/@types/node/perf_hooks.d.ts": {
497
- "version": "27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f",
498
- "signature": "27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f"
499
- },
500
- "../../node_modules/@types/node/process.d.ts": {
501
- "version": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389",
502
- "signature": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389"
503
- },
504
- "../../node_modules/@types/node/punycode.d.ts": {
505
- "version": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1",
506
- "signature": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1"
507
- },
508
- "../../node_modules/@types/node/querystring.d.ts": {
509
- "version": "e0070c45bf15b872f58eee948f71ad6f4f424f36330b2477753fc1aed3ece36e",
510
- "signature": "e0070c45bf15b872f58eee948f71ad6f4f424f36330b2477753fc1aed3ece36e"
511
- },
512
- "../../node_modules/@types/node/readline.d.ts": {
513
- "version": "b0bc3b2fd4113d182da1af2442ac532b987401579b291669859b60a261b7ee24",
514
- "signature": "b0bc3b2fd4113d182da1af2442ac532b987401579b291669859b60a261b7ee24"
515
- },
516
- "../../node_modules/@types/node/repl.d.ts": {
517
- "version": "65dbe15ed8a8ed5d4707a63868178dc38111cfc06de28a2e50713ca017a9c157",
518
- "signature": "65dbe15ed8a8ed5d4707a63868178dc38111cfc06de28a2e50713ca017a9c157"
519
- },
520
- "../../node_modules/@types/node/stream.d.ts": {
521
- "version": "2350c09d0121a0b22c386a7bb8436d521b444c6b4b3e6ee37197d08a23f3b9dd",
522
- "signature": "2350c09d0121a0b22c386a7bb8436d521b444c6b4b3e6ee37197d08a23f3b9dd"
523
- },
524
- "../../node_modules/@types/node/string_decoder.d.ts": {
525
- "version": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432",
526
- "signature": "7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432"
527
- },
528
- "../../node_modules/@types/node/timers.d.ts": {
529
- "version": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9",
530
- "signature": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9"
531
- },
532
- "../../node_modules/@types/node/tls.d.ts": {
533
- "version": "af5f07deb33b2fb92ef67ea5ebb69670b81c74908b646e7cd4361a331d2a558a",
534
- "signature": "af5f07deb33b2fb92ef67ea5ebb69670b81c74908b646e7cd4361a331d2a558a"
535
- },
536
- "../../node_modules/@types/node/trace_events.d.ts": {
537
- "version": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662",
538
- "signature": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662"
539
- },
540
- "../../node_modules/@types/node/tty.d.ts": {
541
- "version": "08261bfa763b8cd7fa74c06debf70ee22268c299a18e5dc7c48736bc352be007",
542
- "signature": "08261bfa763b8cd7fa74c06debf70ee22268c299a18e5dc7c48736bc352be007"
543
- },
544
- "../../node_modules/@types/node/url.d.ts": {
545
- "version": "1e3da92862604b1f7a32265169f9aa712c4567742d42597704e04ae3e07019e7",
546
- "signature": "1e3da92862604b1f7a32265169f9aa712c4567742d42597704e04ae3e07019e7"
547
- },
548
- "../../node_modules/@types/node/util.d.ts": {
549
- "version": "0f6382d5032e45eec50b8f6c1e18c77544bc4db2ef8f854d196b254ec16add12",
550
- "signature": "0f6382d5032e45eec50b8f6c1e18c77544bc4db2ef8f854d196b254ec16add12"
551
- },
552
- "../../node_modules/@types/node/v8.d.ts": {
553
- "version": "e98d697adf809fc14dc88ed4e00e4f0e0e381ca23d6d9320cf01af87e801f725",
554
- "signature": "e98d697adf809fc14dc88ed4e00e4f0e0e381ca23d6d9320cf01af87e801f725"
555
- },
556
- "../../node_modules/@types/node/vm.d.ts": {
557
- "version": "ad20b1311e55187f8eeefdd282a02dbc70e5ac0cf8ab4cabae99c142b32cc562",
558
- "signature": "ad20b1311e55187f8eeefdd282a02dbc70e5ac0cf8ab4cabae99c142b32cc562"
559
- },
560
- "../../node_modules/@types/node/worker_threads.d.ts": {
561
- "version": "7780573ed8387aaadcc61d87f3d60d77dabf1e060da252dc72ab1d73401988bb",
562
- "signature": "7780573ed8387aaadcc61d87f3d60d77dabf1e060da252dc72ab1d73401988bb"
563
- },
564
- "../../node_modules/@types/node/zlib.d.ts": {
565
- "version": "2ffd50644d73fc1fa59c69d48859b6c843d3604609d7353725b6d2b001f05a2b",
566
- "signature": "2ffd50644d73fc1fa59c69d48859b6c843d3604609d7353725b6d2b001f05a2b"
567
- },
568
- "../../node_modules/@types/node/base.d.ts": {
569
- "version": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce",
570
- "signature": "6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce"
571
- },
572
- "../../node_modules/@types/node/ts3.2/util.d.ts": {
573
- "version": "4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c",
574
- "signature": "4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c"
575
- },
576
- "../../node_modules/@types/node/ts3.2/globals.d.ts": {
577
- "version": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1",
578
- "signature": "4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1"
579
- },
580
- "../../node_modules/@types/node/ts3.2/index.d.ts": {
581
- "version": "765fc34423b93c2ab763670d8d11d99e5f47387c13c161d6f1640dd6d91b7d1c",
582
- "signature": "765fc34423b93c2ab763670d8d11d99e5f47387c13c161d6f1640dd6d91b7d1c"
583
- },
584
- "../../node_modules/@types/glob/index.d.ts": {
585
- "version": "d852d6282c8dc8156d26d6bda83ab4bde51fee05ba2fe0ecdc165ddda009d3ee",
586
- "signature": "d852d6282c8dc8156d26d6bda83ab4bde51fee05ba2fe0ecdc165ddda009d3ee"
587
- },
588
- "../../node_modules/@types/istanbul-lib-coverage/index.d.ts": {
589
- "version": "9e951ec338c4232d611552a1be7b4ecec79a8c2307a893ce39701316fe2374bd",
590
- "signature": "9e951ec338c4232d611552a1be7b4ecec79a8c2307a893ce39701316fe2374bd"
591
- },
592
- "../../node_modules/@types/istanbul-lib-report/index.d.ts": {
593
- "version": "70c61ff569aabdf2b36220da6c06caaa27e45cd7acac81a1966ab4ee2eadc4f2",
594
- "signature": "70c61ff569aabdf2b36220da6c06caaa27e45cd7acac81a1966ab4ee2eadc4f2"
595
- },
596
- "../../node_modules/@types/istanbul-reports/index.d.ts": {
597
- "version": "93b59bc67329d5add033e3198583c39aa939cef891e6a2b763e0bea2b514ea9b",
598
- "signature": "93b59bc67329d5add033e3198583c39aa939cef891e6a2b763e0bea2b514ea9b"
599
- },
600
- "../../node_modules/@types/jest-diff/index.d.ts": {
601
- "version": "6ecb326999da47034eff85653423767152858fbb7acf0433f7603c9abf1e3f06",
602
- "signature": "6ecb326999da47034eff85653423767152858fbb7acf0433f7603c9abf1e3f06"
603
- },
604
- "../../node_modules/@types/jest/index.d.ts": {
605
- "version": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b",
606
- "signature": "fa957aac96a5a1b31eab2ad478219b9559d1ab7d0668920817614a8384d8965b"
607
- },
608
- "../../node_modules/@types/mock-fs/index.d.ts": {
609
- "version": "3b08acc9e43842f8c677fcea59fddbddb9c8046d6d8bcfa5a72f398e0e41aeb6",
610
- "signature": "3b08acc9e43842f8c677fcea59fddbddb9c8046d6d8bcfa5a72f398e0e41aeb6"
611
- },
612
- "../../node_modules/@types/normalize-package-data/index.d.ts": {
613
- "version": "c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613",
614
- "signature": "c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613"
615
- },
616
- "../../node_modules/@types/stack-utils/index.d.ts": {
617
- "version": "41422586881bcd739b4e62d9b91cd29909f8572aa3e3cdf316b7c50f14708d49",
618
- "signature": "41422586881bcd739b4e62d9b91cd29909f8572aa3e3cdf316b7c50f14708d49"
619
- },
620
- "../../node_modules/@types/yargs-parser/index.d.ts": {
621
- "version": "7b48555954a556ad80cc5fda89473d339f570eeac7a7b4d99c88ff5e646c24f7",
622
- "signature": "7b48555954a556ad80cc5fda89473d339f570eeac7a7b4d99c88ff5e646c24f7"
623
- },
624
- "../../node_modules/@types/yargs/index.d.ts": {
625
- "version": "6f15cf4b24659aa2b9f957dc0b4254b89f35a77978f9da1f161587b66ef75663",
626
- "signature": "6f15cf4b24659aa2b9f957dc0b4254b89f35a77978f9da1f161587b66ef75663"
627
- }
628
- },
629
- "options": {
630
- "target": 5,
631
- "module": 1,
632
- "lib": [
633
- "lib.es2018.d.ts"
634
- ],
635
- "declaration": true,
636
- "declarationMap": true,
637
- "sourceMap": true,
638
- "composite": true,
639
- "importHelpers": true,
640
- "strict": true,
641
- "noUnusedLocals": true,
642
- "noUnusedParameters": true,
643
- "noImplicitReturns": true,
644
- "noFallthroughCasesInSwitch": true,
645
- "allowSyntheticDefaultImports": true,
646
- "esModuleInterop": true,
647
- "outDir": "./lib",
648
- "rootDir": "./src",
649
- "configFilePath": "./tsconfig.json"
650
- },
651
- "referencedMap": {
652
- "../../node_modules/typescript/lib/lib.es5.d.ts": [
653
- "../../node_modules/@types/node/util.d.ts",
654
- "../../node_modules/@types/node/ts3.2/util.d.ts"
655
- ],
656
- "../../node_modules/typescript/lib/lib.es2015.d.ts": [
657
- "../../node_modules/@types/node/util.d.ts",
658
- "../../node_modules/@types/node/ts3.2/util.d.ts"
659
- ],
660
- "../../node_modules/typescript/lib/lib.es2016.d.ts": [
661
- "../../node_modules/@types/node/util.d.ts",
662
- "../../node_modules/@types/node/ts3.2/util.d.ts"
663
- ],
664
- "../../node_modules/typescript/lib/lib.es2017.d.ts": [
665
- "../../node_modules/@types/node/util.d.ts",
666
- "../../node_modules/@types/node/ts3.2/util.d.ts"
667
- ],
668
- "../../node_modules/typescript/lib/lib.es2018.d.ts": [
669
- "../../node_modules/@types/node/util.d.ts",
670
- "../../node_modules/@types/node/ts3.2/util.d.ts"
671
- ],
672
- "../../node_modules/typescript/lib/lib.es2015.core.d.ts": [
673
- "../../node_modules/@types/node/util.d.ts",
674
- "../../node_modules/@types/node/ts3.2/util.d.ts"
675
- ],
676
- "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [
677
- "../../node_modules/@types/node/util.d.ts",
678
- "../../node_modules/@types/node/ts3.2/util.d.ts"
679
- ],
680
- "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [
681
- "../../node_modules/@types/node/util.d.ts",
682
- "../../node_modules/@types/node/ts3.2/util.d.ts"
683
- ],
684
- "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [
685
- "../../node_modules/@types/node/util.d.ts",
686
- "../../node_modules/@types/node/ts3.2/util.d.ts"
687
- ],
688
- "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [
689
- "../../node_modules/@types/node/util.d.ts",
690
- "../../node_modules/@types/node/ts3.2/util.d.ts"
691
- ],
692
- "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [
693
- "../../node_modules/@types/node/util.d.ts",
694
- "../../node_modules/@types/node/ts3.2/util.d.ts"
695
- ],
696
- "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [
697
- "../../node_modules/@types/node/util.d.ts",
698
- "../../node_modules/@types/node/ts3.2/util.d.ts"
699
- ],
700
- "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [
701
- "../../node_modules/@types/node/util.d.ts",
702
- "../../node_modules/@types/node/ts3.2/util.d.ts"
703
- ],
704
- "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [
705
- "../../node_modules/@types/node/util.d.ts",
706
- "../../node_modules/@types/node/ts3.2/util.d.ts"
707
- ],
708
- "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [
709
- "../../node_modules/@types/node/util.d.ts",
710
- "../../node_modules/@types/node/ts3.2/util.d.ts"
711
- ],
712
- "../../node_modules/typescript/lib/lib.es2017.object.d.ts": [
713
- "../../node_modules/@types/node/util.d.ts",
714
- "../../node_modules/@types/node/ts3.2/util.d.ts"
715
- ],
716
- "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [
717
- "../../node_modules/@types/node/util.d.ts",
718
- "../../node_modules/@types/node/ts3.2/util.d.ts"
719
- ],
720
- "../../node_modules/typescript/lib/lib.es2017.string.d.ts": [
721
- "../../node_modules/@types/node/util.d.ts",
722
- "../../node_modules/@types/node/ts3.2/util.d.ts"
723
- ],
724
- "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [
725
- "../../node_modules/@types/node/util.d.ts",
726
- "../../node_modules/@types/node/ts3.2/util.d.ts"
727
- ],
728
- "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [
729
- "../../node_modules/@types/node/util.d.ts",
730
- "../../node_modules/@types/node/ts3.2/util.d.ts"
731
- ],
732
- "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [
733
- "../../node_modules/@types/node/util.d.ts",
734
- "../../node_modules/@types/node/ts3.2/util.d.ts"
735
- ],
736
- "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [
737
- "../../node_modules/@types/node/util.d.ts",
738
- "../../node_modules/@types/node/ts3.2/util.d.ts"
739
- ],
740
- "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [
741
- "../../node_modules/@types/node/util.d.ts",
742
- "../../node_modules/@types/node/ts3.2/util.d.ts"
743
- ],
744
- "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [
745
- "../../node_modules/@types/node/util.d.ts",
746
- "../../node_modules/@types/node/ts3.2/util.d.ts"
747
- ],
748
- "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [
749
- "../../node_modules/@types/node/util.d.ts",
750
- "../../node_modules/@types/node/ts3.2/util.d.ts"
751
- ],
752
- "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [
753
- "../../node_modules/@types/node/util.d.ts",
754
- "../../node_modules/@types/node/ts3.2/util.d.ts"
755
- ],
756
- "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": [
757
- "../../node_modules/@types/node/util.d.ts",
758
- "../../node_modules/@types/node/ts3.2/util.d.ts"
759
- ],
760
- "../../node_modules/tslib/tslib.d.ts": [
761
- "../../node_modules/@types/node/util.d.ts",
762
- "../../node_modules/@types/node/ts3.2/util.d.ts"
763
- ],
764
- "../utils/lib/getWorkspacePackageDirs.d.ts": [
765
- "../../node_modules/@types/node/util.d.ts",
766
- "../../node_modules/@types/node/ts3.2/util.d.ts"
767
- ],
768
- "../utils/lib/readJson.d.ts": [
769
- "../../node_modules/@types/node/util.d.ts",
770
- "../../node_modules/@types/node/ts3.2/util.d.ts"
771
- ],
772
- "../utils/lib/writeJson.d.ts": [
773
- "../../node_modules/@types/node/util.d.ts",
774
- "../../node_modules/@types/node/ts3.2/util.d.ts"
775
- ],
776
- "../utils/lib/mutateJson.d.ts": [
777
- "../../node_modules/@types/node/util.d.ts",
778
- "../../node_modules/@types/node/ts3.2/util.d.ts"
779
- ],
780
- "../utils/lib/PackageJson.d.ts": [
781
- "../../node_modules/@types/node/util.d.ts",
782
- "../../node_modules/@types/node/ts3.2/util.d.ts"
783
- ],
784
- "../utils/lib/findWorkspaceDir.d.ts": [
785
- "../../node_modules/@types/node/util.d.ts",
786
- "../../node_modules/@types/node/ts3.2/util.d.ts"
787
- ],
788
- "../utils/lib/getPackageNameToDir.d.ts": [
789
- "../../node_modules/@types/node/util.d.ts",
790
- "../../node_modules/@types/node/ts3.2/util.d.ts"
791
- ],
792
- "../utils/lib/index.d.ts": [
793
- "../utils/lib/getWorkspacePackageDirs.d.ts",
794
- "../utils/lib/readJson.d.ts",
795
- "../utils/lib/writeJson.d.ts",
796
- "../utils/lib/mutateJson.d.ts",
797
- "../utils/lib/PackageJson.d.ts",
798
- "../utils/lib/findWorkspaceDir.d.ts",
799
- "../utils/lib/getPackageNameToDir.d.ts",
800
- "../../node_modules/@types/node/util.d.ts",
801
- "../../node_modules/@types/node/ts3.2/util.d.ts"
802
- ],
803
- "../../node_modules/runtypes/lib/types/literal.d.ts": [
804
- "../../node_modules/runtypes/lib/runtype.d.ts",
805
- "../../node_modules/@types/node/util.d.ts",
806
- "../../node_modules/@types/node/ts3.2/util.d.ts"
807
- ],
808
- "../../node_modules/runtypes/lib/types/unknown.d.ts": [
809
- "../../node_modules/runtypes/lib/runtype.d.ts",
810
- "../../node_modules/@types/node/util.d.ts",
811
- "../../node_modules/@types/node/ts3.2/util.d.ts"
812
- ],
813
- "../../node_modules/runtypes/lib/types/constraint.d.ts": [
814
- "../../node_modules/runtypes/lib/runtype.d.ts",
815
- "../../node_modules/runtypes/lib/types/unknown.d.ts",
816
- "../../node_modules/@types/node/util.d.ts",
817
- "../../node_modules/@types/node/ts3.2/util.d.ts"
818
- ],
819
- "../../node_modules/runtypes/lib/types/instanceof.d.ts": [
820
- "../../node_modules/runtypes/lib/runtype.d.ts",
821
- "../../node_modules/@types/node/util.d.ts",
822
- "../../node_modules/@types/node/ts3.2/util.d.ts"
823
- ],
824
- "../../node_modules/runtypes/lib/reflect.d.ts": [
825
- "../../node_modules/runtypes/lib/runtype.d.ts",
826
- "../../node_modules/runtypes/lib/types/literal.d.ts",
827
- "../../node_modules/runtypes/lib/types/constraint.d.ts",
828
- "../../node_modules/runtypes/lib/types/instanceof.d.ts",
829
- "../../node_modules/@types/node/util.d.ts",
830
- "../../node_modules/@types/node/ts3.2/util.d.ts"
831
- ],
832
- "../../node_modules/runtypes/lib/runtype.d.ts": [
833
- "../../node_modules/runtypes/lib/index.d.ts",
834
- "../../node_modules/runtypes/lib/reflect.d.ts",
835
- "../../node_modules/@types/node/util.d.ts",
836
- "../../node_modules/@types/node/ts3.2/util.d.ts"
837
- ],
838
- "../../node_modules/runtypes/lib/result.d.ts": [
839
- "../../node_modules/@types/node/util.d.ts",
840
- "../../node_modules/@types/node/ts3.2/util.d.ts"
841
- ],
842
- "../../node_modules/runtypes/lib/contract.d.ts": [
843
- "../../node_modules/runtypes/lib/index.d.ts",
844
- "../../node_modules/@types/node/util.d.ts",
845
- "../../node_modules/@types/node/ts3.2/util.d.ts"
846
- ],
847
- "../../node_modules/runtypes/lib/match.d.ts": [
848
- "../../node_modules/runtypes/lib/index.d.ts",
849
- "../../node_modules/@types/node/util.d.ts",
850
- "../../node_modules/@types/node/ts3.2/util.d.ts"
851
- ],
852
- "../../node_modules/runtypes/lib/errors.d.ts": [
853
- "../../node_modules/@types/node/util.d.ts",
854
- "../../node_modules/@types/node/ts3.2/util.d.ts"
855
- ],
856
- "../../node_modules/runtypes/lib/types/never.d.ts": [
857
- "../../node_modules/runtypes/lib/runtype.d.ts",
858
- "../../node_modules/@types/node/util.d.ts",
859
- "../../node_modules/@types/node/ts3.2/util.d.ts"
860
- ],
861
- "../../node_modules/runtypes/lib/types/void.d.ts": [
862
- "../../node_modules/runtypes/lib/types/unknown.d.ts",
863
- "../../node_modules/@types/node/util.d.ts",
864
- "../../node_modules/@types/node/ts3.2/util.d.ts"
865
- ],
866
- "../../node_modules/runtypes/lib/types/boolean.d.ts": [
867
- "../../node_modules/runtypes/lib/runtype.d.ts",
868
- "../../node_modules/@types/node/util.d.ts",
869
- "../../node_modules/@types/node/ts3.2/util.d.ts"
870
- ],
871
- "../../node_modules/runtypes/lib/types/number.d.ts": [
872
- "../../node_modules/runtypes/lib/runtype.d.ts",
873
- "../../node_modules/@types/node/util.d.ts",
874
- "../../node_modules/@types/node/ts3.2/util.d.ts"
875
- ],
876
- "../../node_modules/runtypes/lib/types/string.d.ts": [
877
- "../../node_modules/runtypes/lib/runtype.d.ts",
878
- "../../node_modules/@types/node/util.d.ts",
879
- "../../node_modules/@types/node/ts3.2/util.d.ts"
880
- ],
881
- "../../node_modules/runtypes/lib/types/symbol.d.ts": [
882
- "../../node_modules/runtypes/lib/runtype.d.ts",
883
- "../../node_modules/@types/node/util.d.ts",
884
- "../../node_modules/@types/node/ts3.2/util.d.ts"
885
- ],
886
- "../../node_modules/runtypes/lib/types/array.d.ts": [
887
- "../../node_modules/runtypes/lib/runtype.d.ts",
888
- "../../node_modules/@types/node/util.d.ts",
889
- "../../node_modules/@types/node/ts3.2/util.d.ts"
890
- ],
891
- "../../node_modules/runtypes/lib/types/tuple.d.ts": [
892
- "../../node_modules/runtypes/lib/runtype.d.ts",
893
- "../../node_modules/@types/node/util.d.ts",
894
- "../../node_modules/@types/node/ts3.2/util.d.ts"
895
- ],
896
- "../../node_modules/runtypes/lib/types/record.d.ts": [
897
- "../../node_modules/runtypes/lib/runtype.d.ts",
898
- "../../node_modules/@types/node/util.d.ts",
899
- "../../node_modules/@types/node/ts3.2/util.d.ts"
900
- ],
901
- "../../node_modules/runtypes/lib/types/partial.d.ts": [
902
- "../../node_modules/runtypes/lib/runtype.d.ts",
903
- "../../node_modules/@types/node/util.d.ts",
904
- "../../node_modules/@types/node/ts3.2/util.d.ts"
905
- ],
906
- "../../node_modules/runtypes/lib/types/dictionary.d.ts": [
907
- "../../node_modules/runtypes/lib/runtype.d.ts",
908
- "../../node_modules/@types/node/util.d.ts",
909
- "../../node_modules/@types/node/ts3.2/util.d.ts"
910
- ],
911
- "../../node_modules/runtypes/lib/types/union.d.ts": [
912
- "../../node_modules/runtypes/lib/runtype.d.ts",
913
- "../../node_modules/@types/node/util.d.ts",
914
- "../../node_modules/@types/node/ts3.2/util.d.ts"
915
- ],
916
- "../../node_modules/runtypes/lib/types/intersect.d.ts": [
917
- "../../node_modules/runtypes/lib/runtype.d.ts",
918
- "../../node_modules/@types/node/util.d.ts",
919
- "../../node_modules/@types/node/ts3.2/util.d.ts"
920
- ],
921
- "../../node_modules/runtypes/lib/types/function.d.ts": [
922
- "../../node_modules/runtypes/lib/runtype.d.ts",
923
- "../../node_modules/@types/node/util.d.ts",
924
- "../../node_modules/@types/node/ts3.2/util.d.ts"
925
- ],
926
- "../../node_modules/runtypes/lib/types/lazy.d.ts": [
927
- "../../node_modules/runtypes/lib/runtype.d.ts",
928
- "../../node_modules/@types/node/util.d.ts",
929
- "../../node_modules/@types/node/ts3.2/util.d.ts"
930
- ],
931
- "../../node_modules/runtypes/lib/types/brand.d.ts": [
932
- "../../node_modules/runtypes/lib/runtype.d.ts",
933
- "../../node_modules/@types/node/util.d.ts",
934
- "../../node_modules/@types/node/ts3.2/util.d.ts"
935
- ],
936
- "../../node_modules/runtypes/lib/decorator.d.ts": [
937
- "../../node_modules/runtypes/lib/runtype.d.ts",
938
- "../../node_modules/@types/node/util.d.ts",
939
- "../../node_modules/@types/node/ts3.2/util.d.ts"
940
- ],
941
- "../../node_modules/runtypes/lib/index.d.ts": [
942
- "../../node_modules/runtypes/lib/runtype.d.ts",
943
- "../../node_modules/runtypes/lib/reflect.d.ts",
944
- "../../node_modules/runtypes/lib/result.d.ts",
945
- "../../node_modules/runtypes/lib/contract.d.ts",
946
- "../../node_modules/runtypes/lib/match.d.ts",
947
- "../../node_modules/runtypes/lib/errors.d.ts",
948
- "../../node_modules/runtypes/lib/types/unknown.d.ts",
949
- "../../node_modules/runtypes/lib/types/never.d.ts",
950
- "../../node_modules/runtypes/lib/types/void.d.ts",
951
- "../../node_modules/runtypes/lib/types/literal.d.ts",
952
- "../../node_modules/runtypes/lib/types/boolean.d.ts",
953
- "../../node_modules/runtypes/lib/types/number.d.ts",
954
- "../../node_modules/runtypes/lib/types/string.d.ts",
955
- "../../node_modules/runtypes/lib/types/symbol.d.ts",
956
- "../../node_modules/runtypes/lib/types/array.d.ts",
957
- "../../node_modules/runtypes/lib/types/tuple.d.ts",
958
- "../../node_modules/runtypes/lib/types/record.d.ts",
959
- "../../node_modules/runtypes/lib/types/partial.d.ts",
960
- "../../node_modules/runtypes/lib/types/dictionary.d.ts",
961
- "../../node_modules/runtypes/lib/types/union.d.ts",
962
- "../../node_modules/runtypes/lib/types/intersect.d.ts",
963
- "../../node_modules/runtypes/lib/types/function.d.ts",
964
- "../../node_modules/runtypes/lib/types/instanceof.d.ts",
965
- "../../node_modules/runtypes/lib/types/lazy.d.ts",
966
- "../../node_modules/runtypes/lib/types/constraint.d.ts",
967
- "../../node_modules/runtypes/lib/types/brand.d.ts",
968
- "../../node_modules/runtypes/lib/decorator.d.ts",
969
- "../../node_modules/@types/node/util.d.ts",
970
- "../../node_modules/@types/node/ts3.2/util.d.ts"
971
- ],
972
- "../core/lib/Config.d.ts": [
973
- "../../node_modules/runtypes/lib/index.d.ts",
974
- "../../node_modules/runtypes/lib/runtype.d.ts",
975
- "../core/lib/Context.d.ts",
976
- "../../node_modules/@types/node/util.d.ts",
977
- "../../node_modules/@types/node/ts3.2/util.d.ts"
978
- ],
979
- "../core/lib/PackageContext.d.ts": [
980
- "../utils/lib/index.d.ts",
981
- "../core/lib/Config.d.ts",
982
- "../core/lib/Context.d.ts",
983
- "../core/lib/WorkspaceContext.d.ts",
984
- "../../node_modules/@types/node/util.d.ts",
985
- "../../node_modules/@types/node/ts3.2/util.d.ts"
986
- ],
987
- "../core/lib/WorkspaceContext.d.ts": [
988
- "../core/lib/Config.d.ts",
989
- "../core/lib/Context.d.ts",
990
- "../core/lib/PackageContext.d.ts",
991
- "../../node_modules/@types/node/util.d.ts",
992
- "../../node_modules/@types/node/ts3.2/util.d.ts"
993
- ],
994
- "../core/lib/Context.d.ts": [
995
- "../utils/lib/index.d.ts",
996
- "../core/lib/Config.d.ts",
997
- "../core/lib/WorkspaceContext.d.ts",
998
- "../../node_modules/@types/node/util.d.ts",
999
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1000
- ],
1001
- "../core/lib/check.d.ts": [
1002
- "../core/lib/Config.d.ts",
1003
- "../core/lib/Context.d.ts",
1004
- "../../node_modules/@types/node/util.d.ts",
1005
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1006
- ],
1007
- "../core/lib/resolveConfig.d.ts": [
1008
- "../core/lib/Config.d.ts",
1009
- "../../node_modules/@types/node/util.d.ts",
1010
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1011
- ],
1012
- "../core/lib/index.d.ts": [
1013
- "../core/lib/Context.d.ts",
1014
- "../core/lib/Config.d.ts",
1015
- "../core/lib/check.d.ts",
1016
- "../core/lib/PackageContext.d.ts",
1017
- "../core/lib/WorkspaceContext.d.ts",
1018
- "../core/lib/resolveConfig.d.ts",
1019
- "../../node_modules/@types/node/util.d.ts",
1020
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1021
- ],
1022
- "../../node_modules/jest-diff/build/types.d.ts": [
1023
- "../../node_modules/@types/node/util.d.ts",
1024
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1025
- ],
1026
- "../../node_modules/jest-diff/build/index.d.ts": [
1027
- "../../node_modules/jest-diff/build/types.d.ts",
1028
- "../../node_modules/@types/node/util.d.ts",
1029
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1030
- ],
1031
- "./src/util/checkAlpha.ts": [
1032
- "../core/lib/index.d.ts",
1033
- "../utils/lib/index.d.ts",
1034
- "../../node_modules/jest-diff/build/index.d.ts",
1035
- "../../node_modules/@types/node/util.d.ts",
1036
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1037
- ],
1038
- "./src/alphabeticalDependencies.ts": [
1039
- "../core/lib/index.d.ts",
1040
- "../../node_modules/runtypes/lib/index.d.ts",
1041
- "./src/util/checkAlpha.ts",
1042
- "../../node_modules/@types/node/util.d.ts",
1043
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1044
- ],
1045
- "./src/alphabeticalScripts.ts": [
1046
- "../core/lib/index.d.ts",
1047
- "../../node_modules/runtypes/lib/index.d.ts",
1048
- "./src/util/checkAlpha.ts",
1049
- "../../node_modules/@types/node/util.d.ts",
1050
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1051
- ],
1052
- "../../node_modules/@types/minimatch/index.d.ts": [
1053
- "../../node_modules/@types/node/util.d.ts",
1054
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1055
- ],
1056
- "./src/bannedDependencies.ts": [
1057
- "../core/lib/index.d.ts",
1058
- "../utils/lib/index.d.ts",
1059
- "../../node_modules/jest-diff/build/index.d.ts",
1060
- "../../node_modules/@types/minimatch/index.d.ts",
1061
- "../../node_modules/runtypes/lib/index.d.ts",
1062
- "../../node_modules/@types/node/util.d.ts",
1063
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1064
- ],
1065
- "./src/consistentDependencies.ts": [
1066
- "../core/lib/index.d.ts",
1067
- "../utils/lib/index.d.ts",
1068
- "../../node_modules/jest-diff/build/index.d.ts",
1069
- "../../node_modules/runtypes/lib/index.d.ts",
1070
- "../../node_modules/@types/node/util.d.ts",
1071
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1072
- ],
1073
- "./src/util/makeDirectory.ts": [
1074
- "../../node_modules/@types/node/fs.d.ts",
1075
- "../../node_modules/@types/node/path.d.ts",
1076
- "../../node_modules/@types/node/util.d.ts",
1077
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1078
- ],
1079
- "./src/fileContents.ts": [
1080
- "../core/lib/index.d.ts",
1081
- "../../node_modules/@types/node/fs.d.ts",
1082
- "../../node_modules/jest-diff/build/index.d.ts",
1083
- "../../node_modules/@types/node/path.d.ts",
1084
- "../../node_modules/runtypes/lib/index.d.ts",
1085
- "./src/util/makeDirectory.ts",
1086
- "../../node_modules/@types/node/util.d.ts",
1087
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1088
- ],
1089
- "./src/packageOrder.ts": [
1090
- "../core/lib/index.d.ts",
1091
- "../utils/lib/index.d.ts",
1092
- "../../node_modules/jest-diff/build/index.d.ts",
1093
- "../../node_modules/runtypes/lib/index.d.ts",
1094
- "../../node_modules/@types/node/util.d.ts",
1095
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1096
- ],
1097
- "./src/packageEntry.ts": [
1098
- "../core/lib/index.d.ts",
1099
- "../utils/lib/index.d.ts",
1100
- "../../node_modules/jest-diff/build/index.d.ts",
1101
- "../../node_modules/runtypes/lib/index.d.ts",
1102
- "../../node_modules/@types/node/util.d.ts",
1103
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1104
- ],
1105
- "./src/packageScript.ts": [
1106
- "../core/lib/index.d.ts",
1107
- "../utils/lib/index.d.ts",
1108
- "../../node_modules/jest-diff/build/index.d.ts",
1109
- "../../node_modules/runtypes/lib/index.d.ts",
1110
- "../../node_modules/@types/node/util.d.ts",
1111
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1112
- ],
1113
- "./src/standardTsconfig.ts": [
1114
- "../core/lib/index.d.ts",
1115
- "../utils/lib/index.d.ts",
1116
- "../../node_modules/@types/node/fs.d.ts",
1117
- "../../node_modules/jest-diff/build/index.d.ts",
1118
- "../../node_modules/@types/minimatch/index.d.ts",
1119
- "../../node_modules/@types/node/path.d.ts",
1120
- "../../node_modules/runtypes/lib/index.d.ts",
1121
- "../../node_modules/@types/node/util.d.ts",
1122
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1123
- ],
1124
- "./src/index.ts": [
1125
- "./src/alphabeticalDependencies.ts",
1126
- "./src/alphabeticalScripts.ts",
1127
- "./src/bannedDependencies.ts",
1128
- "./src/consistentDependencies.ts",
1129
- "./src/fileContents.ts",
1130
- "./src/packageOrder.ts",
1131
- "./src/packageEntry.ts",
1132
- "./src/packageScript.ts",
1133
- "./src/standardTsconfig.ts",
1134
- "../../node_modules/@types/node/util.d.ts",
1135
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1136
- ],
1137
- "./src/__tests__/utils.ts": [
1138
- "../../node_modules/@types/node/util.d.ts",
1139
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1140
- ],
1141
- "./src/__tests__/alphabeticalScripts.spec.ts": [
1142
- "./src/__tests__/utils.ts",
1143
- "../core/lib/index.d.ts",
1144
- "./src/alphabeticalScripts.ts",
1145
- "../../node_modules/@types/node/util.d.ts",
1146
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1147
- ],
1148
- "../../node_modules/@types/tmp/index.d.ts": [
1149
- "../../node_modules/@types/node/util.d.ts",
1150
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1151
- ],
1152
- "./src/__tests__/consistentDependencies.spec.ts": [
1153
- "../core/lib/index.d.ts",
1154
- "../../node_modules/@types/node/fs.d.ts",
1155
- "../../node_modules/@types/node/path.d.ts",
1156
- "../../node_modules/@types/tmp/index.d.ts",
1157
- "./src/consistentDependencies.ts",
1158
- "./src/util/makeDirectory.ts",
1159
- "./src/__tests__/utils.ts",
1160
- "../../node_modules/@types/node/util.d.ts",
1161
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1162
- ],
1163
- "./src/__tests__/fileContents.spec.ts": [
1164
- "./src/__tests__/utils.ts",
1165
- "../core/lib/index.d.ts",
1166
- "../../node_modules/@types/node/path.d.ts",
1167
- "./src/fileContents.ts",
1168
- "../../node_modules/@types/node/util.d.ts",
1169
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1170
- ],
1171
- "./src/__tests__/packageEntry.spec.ts": [
1172
- "./src/__tests__/utils.ts",
1173
- "../core/lib/index.d.ts",
1174
- "./src/packageEntry.ts",
1175
- "../../node_modules/@types/node/util.d.ts",
1176
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1177
- ],
1178
- "./src/__tests__/packageOrder.spec.ts": [
1179
- "./src/__tests__/utils.ts",
1180
- "../core/lib/index.d.ts",
1181
- "./src/packageOrder.ts",
1182
- "../../node_modules/@types/node/util.d.ts",
1183
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1184
- ],
1185
- "./src/__tests__/packageScript.spec.ts": [
1186
- "./src/__tests__/utils.ts",
1187
- "../core/lib/index.d.ts",
1188
- "./src/packageScript.ts",
1189
- "../../node_modules/@types/node/util.d.ts",
1190
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1191
- ],
1192
- "../../node_modules/@babel/types/lib/index.d.ts": [
1193
- "../../node_modules/@types/node/util.d.ts",
1194
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1195
- ],
1196
- "../../node_modules/@types/babel__generator/index.d.ts": [
1197
- "../../node_modules/@babel/types/lib/index.d.ts",
1198
- "../../node_modules/@types/node/util.d.ts",
1199
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1200
- ],
1201
- "../../node_modules/@types/babel__traverse/index.d.ts": [
1202
- "../../node_modules/@babel/types/lib/index.d.ts",
1203
- "../../node_modules/@types/node/util.d.ts",
1204
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1205
- ],
1206
- "../../node_modules/@babel/parser/typings/babel-parser.d.ts": [
1207
- "../../node_modules/@babel/types/lib/index.d.ts",
1208
- "../../node_modules/@types/node/util.d.ts",
1209
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1210
- ],
1211
- "../../node_modules/@types/babel__template/index.d.ts": [
1212
- "../../node_modules/@babel/parser/typings/babel-parser.d.ts",
1213
- "../../node_modules/@babel/types/lib/index.d.ts",
1214
- "../../node_modules/@types/node/util.d.ts",
1215
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1216
- ],
1217
- "../../node_modules/@types/babel__core/index.d.ts": [
1218
- "../../node_modules/@types/babel__generator/index.d.ts",
1219
- "../../node_modules/@types/babel__traverse/index.d.ts",
1220
- "../../node_modules/@types/babel__template/index.d.ts",
1221
- "../../node_modules/@babel/types/lib/index.d.ts",
1222
- "../../node_modules/@babel/parser/typings/babel-parser.d.ts",
1223
- "../../node_modules/@types/node/util.d.ts",
1224
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1225
- ],
1226
- "../../node_modules/@types/events/index.d.ts": [
1227
- "../../node_modules/@types/node/util.d.ts",
1228
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1229
- ],
1230
- "../../node_modules/@types/node/globals.d.ts": [
1231
- "../../node_modules/@types/node/util.d.ts",
1232
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1233
- ],
1234
- "../../node_modules/@types/node/assert.d.ts": [
1235
- "../../node_modules/@types/node/util.d.ts",
1236
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1237
- ],
1238
- "../../node_modules/@types/node/async_hooks.d.ts": [
1239
- "../../node_modules/@types/node/util.d.ts",
1240
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1241
- ],
1242
- "../../node_modules/@types/node/buffer.d.ts": [
1243
- "../../node_modules/@types/node/util.d.ts",
1244
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1245
- ],
1246
- "../../node_modules/@types/node/child_process.d.ts": [
1247
- "../../node_modules/@types/node/events.d.ts",
1248
- "../../node_modules/@types/node/net.d.ts",
1249
- "../../node_modules/@types/node/stream.d.ts",
1250
- "../../node_modules/@types/node/util.d.ts",
1251
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1252
- ],
1253
- "../../node_modules/@types/node/cluster.d.ts": [
1254
- "../../node_modules/@types/node/child_process.d.ts",
1255
- "../../node_modules/@types/node/events.d.ts",
1256
- "../../node_modules/@types/node/net.d.ts",
1257
- "../../node_modules/@types/node/util.d.ts",
1258
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1259
- ],
1260
- "../../node_modules/@types/node/console.d.ts": [
1261
- "../../node_modules/@types/node/util.d.ts",
1262
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1263
- ],
1264
- "../../node_modules/@types/node/constants.d.ts": [
1265
- "../../node_modules/@types/node/util.d.ts",
1266
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1267
- ],
1268
- "../../node_modules/@types/node/crypto.d.ts": [
1269
- "../../node_modules/@types/node/stream.d.ts",
1270
- "../../node_modules/@types/node/util.d.ts",
1271
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1272
- ],
1273
- "../../node_modules/@types/node/dgram.d.ts": [
1274
- "../../node_modules/@types/node/net.d.ts",
1275
- "../../node_modules/@types/node/dns.d.ts",
1276
- "../../node_modules/@types/node/events.d.ts",
1277
- "../../node_modules/@types/node/util.d.ts",
1278
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1279
- ],
1280
- "../../node_modules/@types/node/dns.d.ts": [
1281
- "../../node_modules/@types/node/util.d.ts",
1282
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1283
- ],
1284
- "../../node_modules/@types/node/domain.d.ts": [
1285
- "../../node_modules/@types/node/events.d.ts",
1286
- "../../node_modules/@types/node/util.d.ts",
1287
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1288
- ],
1289
- "../../node_modules/@types/node/events.d.ts": [
1290
- "../../node_modules/@types/node/util.d.ts",
1291
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1292
- ],
1293
- "../../node_modules/@types/node/fs.d.ts": [
1294
- "../../node_modules/@types/node/stream.d.ts",
1295
- "../../node_modules/@types/node/events.d.ts",
1296
- "../../node_modules/@types/node/url.d.ts",
1297
- "../../node_modules/@types/node/util.d.ts",
1298
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1299
- ],
1300
- "../../node_modules/@types/node/http.d.ts": [
1301
- "../../node_modules/@types/node/events.d.ts",
1302
- "../../node_modules/@types/node/stream.d.ts",
1303
- "../../node_modules/@types/node/url.d.ts",
1304
- "../../node_modules/@types/node/net.d.ts",
1305
- "../../node_modules/@types/node/util.d.ts",
1306
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1307
- ],
1308
- "../../node_modules/@types/node/http2.d.ts": [
1309
- "../../node_modules/@types/node/events.d.ts",
1310
- "../../node_modules/@types/node/fs.d.ts",
1311
- "../../node_modules/@types/node/net.d.ts",
1312
- "../../node_modules/@types/node/stream.d.ts",
1313
- "../../node_modules/@types/node/tls.d.ts",
1314
- "../../node_modules/@types/node/url.d.ts",
1315
- "../../node_modules/@types/node/http.d.ts",
1316
- "../../node_modules/@types/node/util.d.ts",
1317
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1318
- ],
1319
- "../../node_modules/@types/node/https.d.ts": [
1320
- "../../node_modules/@types/node/tls.d.ts",
1321
- "../../node_modules/@types/node/events.d.ts",
1322
- "../../node_modules/@types/node/http.d.ts",
1323
- "../../node_modules/@types/node/url.d.ts",
1324
- "../../node_modules/@types/node/util.d.ts",
1325
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1326
- ],
1327
- "../../node_modules/@types/node/inspector.d.ts": [
1328
- "../../node_modules/@types/node/events.d.ts",
1329
- "../../node_modules/@types/node/util.d.ts",
1330
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1331
- ],
1332
- "../../node_modules/@types/node/module.d.ts": [
1333
- "../../node_modules/@types/node/util.d.ts",
1334
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1335
- ],
1336
- "../../node_modules/@types/node/net.d.ts": [
1337
- "../../node_modules/@types/node/stream.d.ts",
1338
- "../../node_modules/@types/node/events.d.ts",
1339
- "../../node_modules/@types/node/dns.d.ts",
1340
- "../../node_modules/@types/node/util.d.ts",
1341
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1342
- ],
1343
- "../../node_modules/@types/node/os.d.ts": [
1344
- "../../node_modules/@types/node/util.d.ts",
1345
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1346
- ],
1347
- "../../node_modules/@types/node/path.d.ts": [
1348
- "../../node_modules/@types/node/util.d.ts",
1349
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1350
- ],
1351
- "../../node_modules/@types/node/perf_hooks.d.ts": [
1352
- "../../node_modules/@types/node/async_hooks.d.ts",
1353
- "../../node_modules/@types/node/util.d.ts",
1354
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1355
- ],
1356
- "../../node_modules/@types/node/process.d.ts": [
1357
- "../../node_modules/@types/node/util.d.ts",
1358
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1359
- ],
1360
- "../../node_modules/@types/node/punycode.d.ts": [
1361
- "../../node_modules/@types/node/util.d.ts",
1362
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1363
- ],
1364
- "../../node_modules/@types/node/querystring.d.ts": [
1365
- "../../node_modules/@types/node/util.d.ts",
1366
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1367
- ],
1368
- "../../node_modules/@types/node/readline.d.ts": [
1369
- "../../node_modules/@types/node/events.d.ts",
1370
- "../../node_modules/@types/node/stream.d.ts",
1371
- "../../node_modules/@types/node/util.d.ts",
1372
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1373
- ],
1374
- "../../node_modules/@types/node/repl.d.ts": [
1375
- "../../node_modules/@types/node/readline.d.ts",
1376
- "../../node_modules/@types/node/vm.d.ts",
1377
- "../../node_modules/@types/node/util.d.ts",
1378
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1379
- ],
1380
- "../../node_modules/@types/node/stream.d.ts": [
1381
- "../../node_modules/@types/node/events.d.ts",
1382
- "../../node_modules/@types/node/util.d.ts",
1383
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1384
- ],
1385
- "../../node_modules/@types/node/string_decoder.d.ts": [
1386
- "../../node_modules/@types/node/util.d.ts",
1387
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1388
- ],
1389
- "../../node_modules/@types/node/timers.d.ts": [
1390
- "../../node_modules/@types/node/util.d.ts",
1391
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1392
- ],
1393
- "../../node_modules/@types/node/tls.d.ts": [
1394
- "../../node_modules/@types/node/crypto.d.ts",
1395
- "../../node_modules/@types/node/dns.d.ts",
1396
- "../../node_modules/@types/node/net.d.ts",
1397
- "../../node_modules/@types/node/stream.d.ts",
1398
- "../../node_modules/@types/node/util.d.ts",
1399
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1400
- ],
1401
- "../../node_modules/@types/node/trace_events.d.ts": [
1402
- "../../node_modules/@types/node/util.d.ts",
1403
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1404
- ],
1405
- "../../node_modules/@types/node/tty.d.ts": [
1406
- "../../node_modules/@types/node/net.d.ts",
1407
- "../../node_modules/@types/node/util.d.ts",
1408
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1409
- ],
1410
- "../../node_modules/@types/node/url.d.ts": [
1411
- "../../node_modules/@types/node/querystring.d.ts",
1412
- "../../node_modules/@types/node/util.d.ts",
1413
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1414
- ],
1415
- "../../node_modules/@types/node/util.d.ts": [
1416
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1417
- ],
1418
- "../../node_modules/@types/node/v8.d.ts": [
1419
- "../../node_modules/@types/node/stream.d.ts",
1420
- "../../node_modules/@types/node/util.d.ts",
1421
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1422
- ],
1423
- "../../node_modules/@types/node/vm.d.ts": [
1424
- "../../node_modules/@types/node/util.d.ts",
1425
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1426
- ],
1427
- "../../node_modules/@types/node/worker_threads.d.ts": [
1428
- "../../node_modules/@types/node/vm.d.ts",
1429
- "../../node_modules/@types/node/events.d.ts",
1430
- "../../node_modules/@types/node/stream.d.ts",
1431
- "../../node_modules/@types/node/util.d.ts",
1432
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1433
- ],
1434
- "../../node_modules/@types/node/zlib.d.ts": [
1435
- "../../node_modules/@types/node/stream.d.ts",
1436
- "../../node_modules/@types/node/util.d.ts",
1437
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1438
- ],
1439
- "../../node_modules/@types/node/base.d.ts": [
1440
- "../../node_modules/@types/node/globals.d.ts",
1441
- "../../node_modules/@types/node/assert.d.ts",
1442
- "../../node_modules/@types/node/async_hooks.d.ts",
1443
- "../../node_modules/@types/node/buffer.d.ts",
1444
- "../../node_modules/@types/node/child_process.d.ts",
1445
- "../../node_modules/@types/node/cluster.d.ts",
1446
- "../../node_modules/@types/node/console.d.ts",
1447
- "../../node_modules/@types/node/constants.d.ts",
1448
- "../../node_modules/@types/node/crypto.d.ts",
1449
- "../../node_modules/@types/node/dgram.d.ts",
1450
- "../../node_modules/@types/node/dns.d.ts",
1451
- "../../node_modules/@types/node/domain.d.ts",
1452
- "../../node_modules/@types/node/events.d.ts",
1453
- "../../node_modules/@types/node/fs.d.ts",
1454
- "../../node_modules/@types/node/http.d.ts",
1455
- "../../node_modules/@types/node/http2.d.ts",
1456
- "../../node_modules/@types/node/https.d.ts",
1457
- "../../node_modules/@types/node/inspector.d.ts",
1458
- "../../node_modules/@types/node/module.d.ts",
1459
- "../../node_modules/@types/node/net.d.ts",
1460
- "../../node_modules/@types/node/os.d.ts",
1461
- "../../node_modules/@types/node/path.d.ts",
1462
- "../../node_modules/@types/node/perf_hooks.d.ts",
1463
- "../../node_modules/@types/node/process.d.ts",
1464
- "../../node_modules/@types/node/punycode.d.ts",
1465
- "../../node_modules/@types/node/querystring.d.ts",
1466
- "../../node_modules/@types/node/readline.d.ts",
1467
- "../../node_modules/@types/node/repl.d.ts",
1468
- "../../node_modules/@types/node/stream.d.ts",
1469
- "../../node_modules/@types/node/string_decoder.d.ts",
1470
- "../../node_modules/@types/node/timers.d.ts",
1471
- "../../node_modules/@types/node/tls.d.ts",
1472
- "../../node_modules/@types/node/trace_events.d.ts",
1473
- "../../node_modules/@types/node/tty.d.ts",
1474
- "../../node_modules/@types/node/url.d.ts",
1475
- "../../node_modules/@types/node/util.d.ts",
1476
- "../../node_modules/@types/node/v8.d.ts",
1477
- "../../node_modules/@types/node/vm.d.ts",
1478
- "../../node_modules/@types/node/worker_threads.d.ts",
1479
- "../../node_modules/@types/node/zlib.d.ts",
1480
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1481
- ],
1482
- "../../node_modules/@types/node/ts3.2/util.d.ts": [
1483
- "../../node_modules/@types/node/util.d.ts"
1484
- ],
1485
- "../../node_modules/@types/node/ts3.2/globals.d.ts": [
1486
- "../../node_modules/@types/node/globals.d.ts",
1487
- "../../node_modules/@types/node/util.d.ts",
1488
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1489
- ],
1490
- "../../node_modules/@types/node/ts3.2/index.d.ts": [
1491
- "../../node_modules/@types/node/base.d.ts",
1492
- "../../node_modules/@types/node/ts3.2/util.d.ts",
1493
- "../../node_modules/@types/node/ts3.2/globals.d.ts",
1494
- "../../node_modules/@types/node/util.d.ts"
1495
- ],
1496
- "../../node_modules/@types/glob/index.d.ts": [
1497
- "../../node_modules/@types/node/events.d.ts",
1498
- "../../node_modules/@types/minimatch/index.d.ts",
1499
- "../../node_modules/@types/node/ts3.2/index.d.ts",
1500
- "../../node_modules/@types/node/util.d.ts",
1501
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1502
- ],
1503
- "../../node_modules/@types/istanbul-lib-coverage/index.d.ts": [
1504
- "../../node_modules/@types/node/util.d.ts",
1505
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1506
- ],
1507
- "../../node_modules/@types/istanbul-lib-report/index.d.ts": [
1508
- "../../node_modules/@types/istanbul-lib-coverage/index.d.ts",
1509
- "../../node_modules/@types/node/util.d.ts",
1510
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1511
- ],
1512
- "../../node_modules/@types/istanbul-reports/index.d.ts": [
1513
- "../../node_modules/@types/istanbul-lib-report/index.d.ts",
1514
- "../../node_modules/@types/istanbul-lib-coverage/index.d.ts",
1515
- "../../node_modules/@types/node/util.d.ts",
1516
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1517
- ],
1518
- "../../node_modules/@types/jest-diff/index.d.ts": [
1519
- "../../node_modules/@types/node/util.d.ts",
1520
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1521
- ],
1522
- "../../node_modules/@types/jest/index.d.ts": [
1523
- "../../node_modules/jest-diff/build/index.d.ts",
1524
- "../../node_modules/@types/jest-diff/index.d.ts",
1525
- "../../node_modules/@types/node/util.d.ts",
1526
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1527
- ],
1528
- "../../node_modules/@types/mock-fs/index.d.ts": [
1529
- "../../node_modules/@types/node/fs.d.ts",
1530
- "../../node_modules/@types/node/ts3.2/index.d.ts",
1531
- "../../node_modules/@types/node/util.d.ts",
1532
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1533
- ],
1534
- "../../node_modules/@types/normalize-package-data/index.d.ts": [
1535
- "../../node_modules/@types/node/util.d.ts",
1536
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1537
- ],
1538
- "../../node_modules/@types/stack-utils/index.d.ts": [
1539
- "../../node_modules/@types/node/util.d.ts",
1540
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1541
- ],
1542
- "../../node_modules/@types/yargs-parser/index.d.ts": [
1543
- "../../node_modules/@types/node/util.d.ts",
1544
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1545
- ],
1546
- "../../node_modules/@types/yargs/index.d.ts": [
1547
- "../../node_modules/@types/yargs-parser/index.d.ts",
1548
- "../../node_modules/@types/node/util.d.ts",
1549
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1550
- ]
1551
- },
1552
- "exportedModulesMap": {
1553
- "../../node_modules/typescript/lib/lib.es5.d.ts": [
1554
- "../../node_modules/@types/node/util.d.ts",
1555
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1556
- ],
1557
- "../../node_modules/typescript/lib/lib.es2015.d.ts": [
1558
- "../../node_modules/@types/node/util.d.ts",
1559
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1560
- ],
1561
- "../../node_modules/typescript/lib/lib.es2016.d.ts": [
1562
- "../../node_modules/@types/node/util.d.ts",
1563
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1564
- ],
1565
- "../../node_modules/typescript/lib/lib.es2017.d.ts": [
1566
- "../../node_modules/@types/node/util.d.ts",
1567
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1568
- ],
1569
- "../../node_modules/typescript/lib/lib.es2018.d.ts": [
1570
- "../../node_modules/@types/node/util.d.ts",
1571
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1572
- ],
1573
- "../../node_modules/typescript/lib/lib.es2015.core.d.ts": [
1574
- "../../node_modules/@types/node/util.d.ts",
1575
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1576
- ],
1577
- "../../node_modules/typescript/lib/lib.es2015.collection.d.ts": [
1578
- "../../node_modules/@types/node/util.d.ts",
1579
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1580
- ],
1581
- "../../node_modules/typescript/lib/lib.es2015.generator.d.ts": [
1582
- "../../node_modules/@types/node/util.d.ts",
1583
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1584
- ],
1585
- "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [
1586
- "../../node_modules/@types/node/util.d.ts",
1587
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1588
- ],
1589
- "../../node_modules/typescript/lib/lib.es2015.promise.d.ts": [
1590
- "../../node_modules/@types/node/util.d.ts",
1591
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1592
- ],
1593
- "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [
1594
- "../../node_modules/@types/node/util.d.ts",
1595
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1596
- ],
1597
- "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [
1598
- "../../node_modules/@types/node/util.d.ts",
1599
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1600
- ],
1601
- "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [
1602
- "../../node_modules/@types/node/util.d.ts",
1603
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1604
- ],
1605
- "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [
1606
- "../../node_modules/@types/node/util.d.ts",
1607
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1608
- ],
1609
- "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [
1610
- "../../node_modules/@types/node/util.d.ts",
1611
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1612
- ],
1613
- "../../node_modules/typescript/lib/lib.es2017.object.d.ts": [
1614
- "../../node_modules/@types/node/util.d.ts",
1615
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1616
- ],
1617
- "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [
1618
- "../../node_modules/@types/node/util.d.ts",
1619
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1620
- ],
1621
- "../../node_modules/typescript/lib/lib.es2017.string.d.ts": [
1622
- "../../node_modules/@types/node/util.d.ts",
1623
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1624
- ],
1625
- "../../node_modules/typescript/lib/lib.es2017.intl.d.ts": [
1626
- "../../node_modules/@types/node/util.d.ts",
1627
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1628
- ],
1629
- "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [
1630
- "../../node_modules/@types/node/util.d.ts",
1631
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1632
- ],
1633
- "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [
1634
- "../../node_modules/@types/node/util.d.ts",
1635
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1636
- ],
1637
- "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [
1638
- "../../node_modules/@types/node/util.d.ts",
1639
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1640
- ],
1641
- "../../node_modules/typescript/lib/lib.es2018.intl.d.ts": [
1642
- "../../node_modules/@types/node/util.d.ts",
1643
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1644
- ],
1645
- "../../node_modules/typescript/lib/lib.es2018.promise.d.ts": [
1646
- "../../node_modules/@types/node/util.d.ts",
1647
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1648
- ],
1649
- "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [
1650
- "../../node_modules/@types/node/util.d.ts",
1651
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1652
- ],
1653
- "../../node_modules/typescript/lib/lib.esnext.intl.d.ts": [
1654
- "../../node_modules/@types/node/util.d.ts",
1655
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1656
- ],
1657
- "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts": [
1658
- "../../node_modules/@types/node/util.d.ts",
1659
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1660
- ],
1661
- "../../node_modules/tslib/tslib.d.ts": [
1662
- "../../node_modules/@types/node/util.d.ts",
1663
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1664
- ],
1665
- "../utils/lib/getWorkspacePackageDirs.d.ts": [
1666
- "../../node_modules/@types/node/util.d.ts",
1667
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1668
- ],
1669
- "../utils/lib/index.d.ts": [
1670
- "../utils/lib/getWorkspacePackageDirs.d.ts",
1671
- "../utils/lib/readJson.d.ts",
1672
- "../utils/lib/writeJson.d.ts",
1673
- "../utils/lib/mutateJson.d.ts",
1674
- "../utils/lib/PackageJson.d.ts",
1675
- "../utils/lib/findWorkspaceDir.d.ts",
1676
- "../utils/lib/getPackageNameToDir.d.ts",
1677
- "../../node_modules/@types/node/util.d.ts",
1678
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1679
- ],
1680
- "./src/standardTsconfig.ts": [
1681
- "../../node_modules/runtypes/lib/index.d.ts",
1682
- "../core/lib/index.d.ts"
1683
- ],
1684
- "./src/index.ts": [
1685
- "./src/alphabeticalDependencies.ts",
1686
- "./src/alphabeticalScripts.ts",
1687
- "./src/bannedDependencies.ts",
1688
- "./src/consistentDependencies.ts",
1689
- "./src/fileContents.ts",
1690
- "./src/packageOrder.ts",
1691
- "./src/packageEntry.ts",
1692
- "./src/packageScript.ts",
1693
- "./src/standardTsconfig.ts"
1694
- ],
1695
- "./src/packageScript.ts": [
1696
- "../../node_modules/runtypes/lib/index.d.ts",
1697
- "../core/lib/index.d.ts"
1698
- ],
1699
- "./src/packageEntry.ts": [
1700
- "../../node_modules/runtypes/lib/index.d.ts",
1701
- "../core/lib/index.d.ts"
1702
- ],
1703
- "./src/packageOrder.ts": [
1704
- "../../node_modules/runtypes/lib/index.d.ts",
1705
- "../core/lib/index.d.ts"
1706
- ],
1707
- "./src/consistentDependencies.ts": [
1708
- "../../node_modules/runtypes/lib/index.d.ts",
1709
- "../core/lib/index.d.ts"
1710
- ],
1711
- "./src/bannedDependencies.ts": [
1712
- "../core/lib/index.d.ts",
1713
- "../../node_modules/runtypes/lib/index.d.ts"
1714
- ],
1715
- "./src/util/checkAlpha.ts": [
1716
- "../core/lib/index.d.ts"
1717
- ],
1718
- "./src/alphabeticalScripts.ts": [
1719
- "../core/lib/index.d.ts",
1720
- "../../node_modules/runtypes/lib/index.d.ts"
1721
- ],
1722
- "./src/alphabeticalDependencies.ts": [
1723
- "../core/lib/index.d.ts",
1724
- "../../node_modules/runtypes/lib/index.d.ts"
1725
- ],
1726
- "../core/lib/Context.d.ts": [
1727
- "../utils/lib/index.d.ts",
1728
- "../core/lib/Config.d.ts",
1729
- "../core/lib/WorkspaceContext.d.ts",
1730
- "../../node_modules/@types/node/util.d.ts",
1731
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1732
- ],
1733
- "../core/lib/index.d.ts": [
1734
- "../core/lib/Context.d.ts",
1735
- "../core/lib/Config.d.ts",
1736
- "../core/lib/check.d.ts",
1737
- "../core/lib/PackageContext.d.ts",
1738
- "../core/lib/WorkspaceContext.d.ts",
1739
- "../core/lib/resolveConfig.d.ts",
1740
- "../../node_modules/@types/node/util.d.ts",
1741
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1742
- ],
1743
- "./src/fileContents.ts": [
1744
- "../../node_modules/runtypes/lib/index.d.ts",
1745
- "../core/lib/index.d.ts"
1746
- ],
1747
- "../core/lib/check.d.ts": [
1748
- "../core/lib/Config.d.ts",
1749
- "../core/lib/Context.d.ts",
1750
- "../../node_modules/@types/node/util.d.ts",
1751
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1752
- ],
1753
- "../core/lib/WorkspaceContext.d.ts": [
1754
- "../core/lib/Config.d.ts",
1755
- "../core/lib/Context.d.ts",
1756
- "../core/lib/PackageContext.d.ts",
1757
- "../../node_modules/@types/node/util.d.ts",
1758
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1759
- ],
1760
- "../core/lib/PackageContext.d.ts": [
1761
- "../utils/lib/index.d.ts",
1762
- "../core/lib/Config.d.ts",
1763
- "../core/lib/Context.d.ts",
1764
- "../core/lib/WorkspaceContext.d.ts",
1765
- "../../node_modules/@types/node/util.d.ts",
1766
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1767
- ],
1768
- "../core/lib/Config.d.ts": [
1769
- "../../node_modules/runtypes/lib/index.d.ts",
1770
- "../../node_modules/runtypes/lib/runtype.d.ts",
1771
- "../core/lib/Context.d.ts",
1772
- "../../node_modules/@types/node/util.d.ts",
1773
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1774
- ],
1775
- "../core/lib/resolveConfig.d.ts": [
1776
- "../core/lib/Config.d.ts",
1777
- "../../node_modules/@types/node/util.d.ts",
1778
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1779
- ],
1780
- "../utils/lib/readJson.d.ts": [
1781
- "../../node_modules/@types/node/util.d.ts",
1782
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1783
- ],
1784
- "../utils/lib/writeJson.d.ts": [
1785
- "../../node_modules/@types/node/util.d.ts",
1786
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1787
- ],
1788
- "../utils/lib/mutateJson.d.ts": [
1789
- "../../node_modules/@types/node/util.d.ts",
1790
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1791
- ],
1792
- "../utils/lib/PackageJson.d.ts": [
1793
- "../../node_modules/@types/node/util.d.ts",
1794
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1795
- ],
1796
- "../utils/lib/findWorkspaceDir.d.ts": [
1797
- "../../node_modules/@types/node/util.d.ts",
1798
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1799
- ],
1800
- "../utils/lib/getPackageNameToDir.d.ts": [
1801
- "../../node_modules/@types/node/util.d.ts",
1802
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1803
- ],
1804
- "../../node_modules/runtypes/lib/types/literal.d.ts": [
1805
- "../../node_modules/runtypes/lib/runtype.d.ts",
1806
- "../../node_modules/@types/node/util.d.ts",
1807
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1808
- ],
1809
- "../../node_modules/runtypes/lib/index.d.ts": [
1810
- "../../node_modules/runtypes/lib/runtype.d.ts",
1811
- "../../node_modules/runtypes/lib/reflect.d.ts",
1812
- "../../node_modules/runtypes/lib/result.d.ts",
1813
- "../../node_modules/runtypes/lib/contract.d.ts",
1814
- "../../node_modules/runtypes/lib/match.d.ts",
1815
- "../../node_modules/runtypes/lib/errors.d.ts",
1816
- "../../node_modules/runtypes/lib/types/unknown.d.ts",
1817
- "../../node_modules/runtypes/lib/types/never.d.ts",
1818
- "../../node_modules/runtypes/lib/types/void.d.ts",
1819
- "../../node_modules/runtypes/lib/types/literal.d.ts",
1820
- "../../node_modules/runtypes/lib/types/boolean.d.ts",
1821
- "../../node_modules/runtypes/lib/types/number.d.ts",
1822
- "../../node_modules/runtypes/lib/types/string.d.ts",
1823
- "../../node_modules/runtypes/lib/types/symbol.d.ts",
1824
- "../../node_modules/runtypes/lib/types/array.d.ts",
1825
- "../../node_modules/runtypes/lib/types/tuple.d.ts",
1826
- "../../node_modules/runtypes/lib/types/record.d.ts",
1827
- "../../node_modules/runtypes/lib/types/partial.d.ts",
1828
- "../../node_modules/runtypes/lib/types/dictionary.d.ts",
1829
- "../../node_modules/runtypes/lib/types/union.d.ts",
1830
- "../../node_modules/runtypes/lib/types/intersect.d.ts",
1831
- "../../node_modules/runtypes/lib/types/function.d.ts",
1832
- "../../node_modules/runtypes/lib/types/instanceof.d.ts",
1833
- "../../node_modules/runtypes/lib/types/lazy.d.ts",
1834
- "../../node_modules/runtypes/lib/types/constraint.d.ts",
1835
- "../../node_modules/runtypes/lib/types/brand.d.ts",
1836
- "../../node_modules/runtypes/lib/decorator.d.ts",
1837
- "../../node_modules/@types/node/util.d.ts",
1838
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1839
- ],
1840
- "../../node_modules/runtypes/lib/match.d.ts": [
1841
- "../../node_modules/runtypes/lib/index.d.ts",
1842
- "../../node_modules/@types/node/util.d.ts",
1843
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1844
- ],
1845
- "../../node_modules/runtypes/lib/contract.d.ts": [
1846
- "../../node_modules/runtypes/lib/index.d.ts",
1847
- "../../node_modules/@types/node/util.d.ts",
1848
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1849
- ],
1850
- "../../node_modules/runtypes/lib/runtype.d.ts": [
1851
- "../../node_modules/runtypes/lib/index.d.ts",
1852
- "../../node_modules/runtypes/lib/reflect.d.ts",
1853
- "../../node_modules/@types/node/util.d.ts",
1854
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1855
- ],
1856
- "../../node_modules/runtypes/lib/decorator.d.ts": [
1857
- "../../node_modules/runtypes/lib/runtype.d.ts",
1858
- "../../node_modules/@types/node/util.d.ts",
1859
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1860
- ],
1861
- "../../node_modules/runtypes/lib/types/brand.d.ts": [
1862
- "../../node_modules/runtypes/lib/runtype.d.ts",
1863
- "../../node_modules/@types/node/util.d.ts",
1864
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1865
- ],
1866
- "../../node_modules/runtypes/lib/types/lazy.d.ts": [
1867
- "../../node_modules/runtypes/lib/runtype.d.ts",
1868
- "../../node_modules/@types/node/util.d.ts",
1869
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1870
- ],
1871
- "../../node_modules/runtypes/lib/types/function.d.ts": [
1872
- "../../node_modules/runtypes/lib/runtype.d.ts",
1873
- "../../node_modules/@types/node/util.d.ts",
1874
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1875
- ],
1876
- "../../node_modules/runtypes/lib/types/intersect.d.ts": [
1877
- "../../node_modules/runtypes/lib/runtype.d.ts",
1878
- "../../node_modules/@types/node/util.d.ts",
1879
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1880
- ],
1881
- "../../node_modules/runtypes/lib/types/union.d.ts": [
1882
- "../../node_modules/runtypes/lib/runtype.d.ts",
1883
- "../../node_modules/@types/node/util.d.ts",
1884
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1885
- ],
1886
- "../../node_modules/runtypes/lib/types/dictionary.d.ts": [
1887
- "../../node_modules/runtypes/lib/runtype.d.ts",
1888
- "../../node_modules/@types/node/util.d.ts",
1889
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1890
- ],
1891
- "../../node_modules/runtypes/lib/types/partial.d.ts": [
1892
- "../../node_modules/runtypes/lib/runtype.d.ts",
1893
- "../../node_modules/@types/node/util.d.ts",
1894
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1895
- ],
1896
- "../../node_modules/runtypes/lib/types/record.d.ts": [
1897
- "../../node_modules/runtypes/lib/runtype.d.ts",
1898
- "../../node_modules/@types/node/util.d.ts",
1899
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1900
- ],
1901
- "../../node_modules/runtypes/lib/types/tuple.d.ts": [
1902
- "../../node_modules/runtypes/lib/runtype.d.ts",
1903
- "../../node_modules/@types/node/util.d.ts",
1904
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1905
- ],
1906
- "../../node_modules/runtypes/lib/types/array.d.ts": [
1907
- "../../node_modules/runtypes/lib/runtype.d.ts",
1908
- "../../node_modules/@types/node/util.d.ts",
1909
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1910
- ],
1911
- "../../node_modules/runtypes/lib/types/symbol.d.ts": [
1912
- "../../node_modules/runtypes/lib/runtype.d.ts",
1913
- "../../node_modules/@types/node/util.d.ts",
1914
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1915
- ],
1916
- "../../node_modules/runtypes/lib/types/string.d.ts": [
1917
- "../../node_modules/runtypes/lib/runtype.d.ts",
1918
- "../../node_modules/@types/node/util.d.ts",
1919
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1920
- ],
1921
- "../../node_modules/runtypes/lib/types/number.d.ts": [
1922
- "../../node_modules/runtypes/lib/runtype.d.ts",
1923
- "../../node_modules/@types/node/util.d.ts",
1924
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1925
- ],
1926
- "../../node_modules/runtypes/lib/types/boolean.d.ts": [
1927
- "../../node_modules/runtypes/lib/runtype.d.ts",
1928
- "../../node_modules/@types/node/util.d.ts",
1929
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1930
- ],
1931
- "../../node_modules/runtypes/lib/types/never.d.ts": [
1932
- "../../node_modules/runtypes/lib/runtype.d.ts",
1933
- "../../node_modules/@types/node/util.d.ts",
1934
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1935
- ],
1936
- "../../node_modules/runtypes/lib/reflect.d.ts": [
1937
- "../../node_modules/runtypes/lib/runtype.d.ts",
1938
- "../../node_modules/runtypes/lib/types/literal.d.ts",
1939
- "../../node_modules/runtypes/lib/types/constraint.d.ts",
1940
- "../../node_modules/runtypes/lib/types/instanceof.d.ts",
1941
- "../../node_modules/@types/node/util.d.ts",
1942
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1943
- ],
1944
- "../../node_modules/runtypes/lib/types/instanceof.d.ts": [
1945
- "../../node_modules/runtypes/lib/runtype.d.ts",
1946
- "../../node_modules/@types/node/util.d.ts",
1947
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1948
- ],
1949
- "../../node_modules/runtypes/lib/types/constraint.d.ts": [
1950
- "../../node_modules/runtypes/lib/runtype.d.ts",
1951
- "../../node_modules/runtypes/lib/types/unknown.d.ts",
1952
- "../../node_modules/@types/node/util.d.ts",
1953
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1954
- ],
1955
- "../../node_modules/runtypes/lib/types/unknown.d.ts": [
1956
- "../../node_modules/runtypes/lib/runtype.d.ts",
1957
- "../../node_modules/@types/node/util.d.ts",
1958
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1959
- ],
1960
- "../../node_modules/runtypes/lib/types/void.d.ts": [
1961
- "../../node_modules/runtypes/lib/types/unknown.d.ts",
1962
- "../../node_modules/@types/node/util.d.ts",
1963
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1964
- ],
1965
- "../../node_modules/runtypes/lib/result.d.ts": [
1966
- "../../node_modules/@types/node/util.d.ts",
1967
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1968
- ],
1969
- "../../node_modules/runtypes/lib/errors.d.ts": [
1970
- "../../node_modules/@types/node/util.d.ts",
1971
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1972
- ],
1973
- "../../node_modules/jest-diff/build/types.d.ts": [
1974
- "../../node_modules/@types/node/util.d.ts",
1975
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1976
- ],
1977
- "../../node_modules/jest-diff/build/index.d.ts": [
1978
- "../../node_modules/jest-diff/build/types.d.ts",
1979
- "../../node_modules/@types/node/util.d.ts",
1980
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1981
- ],
1982
- "../../node_modules/@types/jest/index.d.ts": [
1983
- "../../node_modules/jest-diff/build/index.d.ts",
1984
- "../../node_modules/@types/jest-diff/index.d.ts",
1985
- "../../node_modules/@types/node/util.d.ts",
1986
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1987
- ],
1988
- "../../node_modules/@types/minimatch/index.d.ts": [
1989
- "../../node_modules/@types/node/util.d.ts",
1990
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1991
- ],
1992
- "../../node_modules/@types/glob/index.d.ts": [
1993
- "../../node_modules/@types/node/events.d.ts",
1994
- "../../node_modules/@types/minimatch/index.d.ts",
1995
- "../../node_modules/@types/node/ts3.2/index.d.ts",
1996
- "../../node_modules/@types/node/util.d.ts",
1997
- "../../node_modules/@types/node/ts3.2/util.d.ts"
1998
- ],
1999
- "../../node_modules/@types/tmp/index.d.ts": [
2000
- "../../node_modules/@types/node/util.d.ts",
2001
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2002
- ],
2003
- "../../node_modules/@babel/types/lib/index.d.ts": [
2004
- "../../node_modules/@types/node/util.d.ts",
2005
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2006
- ],
2007
- "../../node_modules/@types/babel__core/index.d.ts": [
2008
- "../../node_modules/@types/babel__generator/index.d.ts",
2009
- "../../node_modules/@types/babel__traverse/index.d.ts",
2010
- "../../node_modules/@types/babel__template/index.d.ts",
2011
- "../../node_modules/@babel/types/lib/index.d.ts",
2012
- "../../node_modules/@babel/parser/typings/babel-parser.d.ts",
2013
- "../../node_modules/@types/node/util.d.ts",
2014
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2015
- ],
2016
- "../../node_modules/@types/babel__template/index.d.ts": [
2017
- "../../node_modules/@babel/parser/typings/babel-parser.d.ts",
2018
- "../../node_modules/@babel/types/lib/index.d.ts",
2019
- "../../node_modules/@types/node/util.d.ts",
2020
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2021
- ],
2022
- "../../node_modules/@babel/parser/typings/babel-parser.d.ts": [
2023
- "../../node_modules/@babel/types/lib/index.d.ts",
2024
- "../../node_modules/@types/node/util.d.ts",
2025
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2026
- ],
2027
- "../../node_modules/@types/babel__traverse/index.d.ts": [
2028
- "../../node_modules/@babel/types/lib/index.d.ts",
2029
- "../../node_modules/@types/node/util.d.ts",
2030
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2031
- ],
2032
- "../../node_modules/@types/babel__generator/index.d.ts": [
2033
- "../../node_modules/@babel/types/lib/index.d.ts",
2034
- "../../node_modules/@types/node/util.d.ts",
2035
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2036
- ],
2037
- "../../node_modules/@types/events/index.d.ts": [
2038
- "../../node_modules/@types/node/util.d.ts",
2039
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2040
- ],
2041
- "../../node_modules/@types/node/globals.d.ts": [
2042
- "../../node_modules/@types/node/util.d.ts",
2043
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2044
- ],
2045
- "../../node_modules/@types/node/assert.d.ts": [
2046
- "../../node_modules/@types/node/util.d.ts",
2047
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2048
- ],
2049
- "../../node_modules/@types/node/base.d.ts": [
2050
- "../../node_modules/@types/node/globals.d.ts",
2051
- "../../node_modules/@types/node/assert.d.ts",
2052
- "../../node_modules/@types/node/async_hooks.d.ts",
2053
- "../../node_modules/@types/node/buffer.d.ts",
2054
- "../../node_modules/@types/node/child_process.d.ts",
2055
- "../../node_modules/@types/node/cluster.d.ts",
2056
- "../../node_modules/@types/node/console.d.ts",
2057
- "../../node_modules/@types/node/constants.d.ts",
2058
- "../../node_modules/@types/node/crypto.d.ts",
2059
- "../../node_modules/@types/node/dgram.d.ts",
2060
- "../../node_modules/@types/node/dns.d.ts",
2061
- "../../node_modules/@types/node/domain.d.ts",
2062
- "../../node_modules/@types/node/events.d.ts",
2063
- "../../node_modules/@types/node/fs.d.ts",
2064
- "../../node_modules/@types/node/http.d.ts",
2065
- "../../node_modules/@types/node/http2.d.ts",
2066
- "../../node_modules/@types/node/https.d.ts",
2067
- "../../node_modules/@types/node/inspector.d.ts",
2068
- "../../node_modules/@types/node/module.d.ts",
2069
- "../../node_modules/@types/node/net.d.ts",
2070
- "../../node_modules/@types/node/os.d.ts",
2071
- "../../node_modules/@types/node/path.d.ts",
2072
- "../../node_modules/@types/node/perf_hooks.d.ts",
2073
- "../../node_modules/@types/node/process.d.ts",
2074
- "../../node_modules/@types/node/punycode.d.ts",
2075
- "../../node_modules/@types/node/querystring.d.ts",
2076
- "../../node_modules/@types/node/readline.d.ts",
2077
- "../../node_modules/@types/node/repl.d.ts",
2078
- "../../node_modules/@types/node/stream.d.ts",
2079
- "../../node_modules/@types/node/string_decoder.d.ts",
2080
- "../../node_modules/@types/node/timers.d.ts",
2081
- "../../node_modules/@types/node/tls.d.ts",
2082
- "../../node_modules/@types/node/trace_events.d.ts",
2083
- "../../node_modules/@types/node/tty.d.ts",
2084
- "../../node_modules/@types/node/url.d.ts",
2085
- "../../node_modules/@types/node/util.d.ts",
2086
- "../../node_modules/@types/node/v8.d.ts",
2087
- "../../node_modules/@types/node/vm.d.ts",
2088
- "../../node_modules/@types/node/worker_threads.d.ts",
2089
- "../../node_modules/@types/node/zlib.d.ts",
2090
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2091
- ],
2092
- "../../node_modules/@types/node/ts3.2/index.d.ts": [
2093
- "../../node_modules/@types/node/base.d.ts",
2094
- "../../node_modules/@types/node/ts3.2/util.d.ts",
2095
- "../../node_modules/@types/node/ts3.2/globals.d.ts",
2096
- "../../node_modules/@types/node/util.d.ts"
2097
- ],
2098
- "../../node_modules/@types/mock-fs/index.d.ts": [
2099
- "../../node_modules/@types/node/fs.d.ts",
2100
- "../../node_modules/@types/node/ts3.2/index.d.ts",
2101
- "../../node_modules/@types/node/util.d.ts",
2102
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2103
- ],
2104
- "../../node_modules/@types/node/async_hooks.d.ts": [
2105
- "../../node_modules/@types/node/util.d.ts",
2106
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2107
- ],
2108
- "../../node_modules/@types/node/perf_hooks.d.ts": [
2109
- "../../node_modules/@types/node/async_hooks.d.ts",
2110
- "../../node_modules/@types/node/util.d.ts",
2111
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2112
- ],
2113
- "../../node_modules/@types/node/buffer.d.ts": [
2114
- "../../node_modules/@types/node/util.d.ts",
2115
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2116
- ],
2117
- "../../node_modules/@types/node/child_process.d.ts": [
2118
- "../../node_modules/@types/node/events.d.ts",
2119
- "../../node_modules/@types/node/net.d.ts",
2120
- "../../node_modules/@types/node/stream.d.ts",
2121
- "../../node_modules/@types/node/util.d.ts",
2122
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2123
- ],
2124
- "../../node_modules/@types/node/cluster.d.ts": [
2125
- "../../node_modules/@types/node/child_process.d.ts",
2126
- "../../node_modules/@types/node/events.d.ts",
2127
- "../../node_modules/@types/node/net.d.ts",
2128
- "../../node_modules/@types/node/util.d.ts",
2129
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2130
- ],
2131
- "../../node_modules/@types/node/console.d.ts": [
2132
- "../../node_modules/@types/node/util.d.ts",
2133
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2134
- ],
2135
- "../../node_modules/@types/node/constants.d.ts": [
2136
- "../../node_modules/@types/node/util.d.ts",
2137
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2138
- ],
2139
- "../../node_modules/@types/node/crypto.d.ts": [
2140
- "../../node_modules/@types/node/stream.d.ts",
2141
- "../../node_modules/@types/node/util.d.ts",
2142
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2143
- ],
2144
- "../../node_modules/@types/node/tls.d.ts": [
2145
- "../../node_modules/@types/node/crypto.d.ts",
2146
- "../../node_modules/@types/node/dns.d.ts",
2147
- "../../node_modules/@types/node/net.d.ts",
2148
- "../../node_modules/@types/node/stream.d.ts",
2149
- "../../node_modules/@types/node/util.d.ts",
2150
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2151
- ],
2152
- "../../node_modules/@types/node/https.d.ts": [
2153
- "../../node_modules/@types/node/tls.d.ts",
2154
- "../../node_modules/@types/node/events.d.ts",
2155
- "../../node_modules/@types/node/http.d.ts",
2156
- "../../node_modules/@types/node/url.d.ts",
2157
- "../../node_modules/@types/node/util.d.ts",
2158
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2159
- ],
2160
- "../../node_modules/@types/node/http2.d.ts": [
2161
- "../../node_modules/@types/node/events.d.ts",
2162
- "../../node_modules/@types/node/fs.d.ts",
2163
- "../../node_modules/@types/node/net.d.ts",
2164
- "../../node_modules/@types/node/stream.d.ts",
2165
- "../../node_modules/@types/node/tls.d.ts",
2166
- "../../node_modules/@types/node/url.d.ts",
2167
- "../../node_modules/@types/node/http.d.ts",
2168
- "../../node_modules/@types/node/util.d.ts",
2169
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2170
- ],
2171
- "../../node_modules/@types/node/dgram.d.ts": [
2172
- "../../node_modules/@types/node/net.d.ts",
2173
- "../../node_modules/@types/node/dns.d.ts",
2174
- "../../node_modules/@types/node/events.d.ts",
2175
- "../../node_modules/@types/node/util.d.ts",
2176
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2177
- ],
2178
- "../../node_modules/@types/node/dns.d.ts": [
2179
- "../../node_modules/@types/node/util.d.ts",
2180
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2181
- ],
2182
- "../../node_modules/@types/node/net.d.ts": [
2183
- "../../node_modules/@types/node/stream.d.ts",
2184
- "../../node_modules/@types/node/events.d.ts",
2185
- "../../node_modules/@types/node/dns.d.ts",
2186
- "../../node_modules/@types/node/util.d.ts",
2187
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2188
- ],
2189
- "../../node_modules/@types/node/tty.d.ts": [
2190
- "../../node_modules/@types/node/net.d.ts",
2191
- "../../node_modules/@types/node/util.d.ts",
2192
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2193
- ],
2194
- "../../node_modules/@types/node/http.d.ts": [
2195
- "../../node_modules/@types/node/events.d.ts",
2196
- "../../node_modules/@types/node/stream.d.ts",
2197
- "../../node_modules/@types/node/url.d.ts",
2198
- "../../node_modules/@types/node/net.d.ts",
2199
- "../../node_modules/@types/node/util.d.ts",
2200
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2201
- ],
2202
- "../../node_modules/@types/node/domain.d.ts": [
2203
- "../../node_modules/@types/node/events.d.ts",
2204
- "../../node_modules/@types/node/util.d.ts",
2205
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2206
- ],
2207
- "../../node_modules/@types/node/events.d.ts": [
2208
- "../../node_modules/@types/node/util.d.ts",
2209
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2210
- ],
2211
- "../../node_modules/@types/node/worker_threads.d.ts": [
2212
- "../../node_modules/@types/node/vm.d.ts",
2213
- "../../node_modules/@types/node/events.d.ts",
2214
- "../../node_modules/@types/node/stream.d.ts",
2215
- "../../node_modules/@types/node/util.d.ts",
2216
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2217
- ],
2218
- "../../node_modules/@types/node/stream.d.ts": [
2219
- "../../node_modules/@types/node/events.d.ts",
2220
- "../../node_modules/@types/node/util.d.ts",
2221
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2222
- ],
2223
- "../../node_modules/@types/node/zlib.d.ts": [
2224
- "../../node_modules/@types/node/stream.d.ts",
2225
- "../../node_modules/@types/node/util.d.ts",
2226
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2227
- ],
2228
- "../../node_modules/@types/node/v8.d.ts": [
2229
- "../../node_modules/@types/node/stream.d.ts",
2230
- "../../node_modules/@types/node/util.d.ts",
2231
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2232
- ],
2233
- "../../node_modules/@types/node/readline.d.ts": [
2234
- "../../node_modules/@types/node/events.d.ts",
2235
- "../../node_modules/@types/node/stream.d.ts",
2236
- "../../node_modules/@types/node/util.d.ts",
2237
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2238
- ],
2239
- "../../node_modules/@types/node/repl.d.ts": [
2240
- "../../node_modules/@types/node/readline.d.ts",
2241
- "../../node_modules/@types/node/vm.d.ts",
2242
- "../../node_modules/@types/node/util.d.ts",
2243
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2244
- ],
2245
- "../../node_modules/@types/node/fs.d.ts": [
2246
- "../../node_modules/@types/node/stream.d.ts",
2247
- "../../node_modules/@types/node/events.d.ts",
2248
- "../../node_modules/@types/node/url.d.ts",
2249
- "../../node_modules/@types/node/util.d.ts",
2250
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2251
- ],
2252
- "../../node_modules/@types/node/inspector.d.ts": [
2253
- "../../node_modules/@types/node/events.d.ts",
2254
- "../../node_modules/@types/node/util.d.ts",
2255
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2256
- ],
2257
- "../../node_modules/@types/node/module.d.ts": [
2258
- "../../node_modules/@types/node/util.d.ts",
2259
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2260
- ],
2261
- "../../node_modules/@types/node/os.d.ts": [
2262
- "../../node_modules/@types/node/util.d.ts",
2263
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2264
- ],
2265
- "../../node_modules/@types/node/path.d.ts": [
2266
- "../../node_modules/@types/node/util.d.ts",
2267
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2268
- ],
2269
- "../../node_modules/@types/node/process.d.ts": [
2270
- "../../node_modules/@types/node/util.d.ts",
2271
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2272
- ],
2273
- "../../node_modules/@types/node/punycode.d.ts": [
2274
- "../../node_modules/@types/node/util.d.ts",
2275
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2276
- ],
2277
- "../../node_modules/@types/node/querystring.d.ts": [
2278
- "../../node_modules/@types/node/util.d.ts",
2279
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2280
- ],
2281
- "../../node_modules/@types/node/url.d.ts": [
2282
- "../../node_modules/@types/node/querystring.d.ts",
2283
- "../../node_modules/@types/node/util.d.ts",
2284
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2285
- ],
2286
- "../../node_modules/@types/node/string_decoder.d.ts": [
2287
- "../../node_modules/@types/node/util.d.ts",
2288
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2289
- ],
2290
- "../../node_modules/@types/node/timers.d.ts": [
2291
- "../../node_modules/@types/node/util.d.ts",
2292
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2293
- ],
2294
- "../../node_modules/@types/node/trace_events.d.ts": [
2295
- "../../node_modules/@types/node/util.d.ts",
2296
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2297
- ],
2298
- "../../node_modules/@types/node/util.d.ts": [
2299
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2300
- ],
2301
- "../../node_modules/@types/yargs/index.d.ts": [
2302
- "../../node_modules/@types/yargs-parser/index.d.ts",
2303
- "../../node_modules/@types/node/util.d.ts",
2304
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2305
- ],
2306
- "../../node_modules/@types/yargs-parser/index.d.ts": [
2307
- "../../node_modules/@types/node/util.d.ts",
2308
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2309
- ],
2310
- "../../node_modules/@types/stack-utils/index.d.ts": [
2311
- "../../node_modules/@types/node/util.d.ts",
2312
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2313
- ],
2314
- "../../node_modules/@types/normalize-package-data/index.d.ts": [
2315
- "../../node_modules/@types/node/util.d.ts",
2316
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2317
- ],
2318
- "../../node_modules/@types/jest-diff/index.d.ts": [
2319
- "../../node_modules/@types/node/util.d.ts",
2320
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2321
- ],
2322
- "../../node_modules/@types/istanbul-reports/index.d.ts": [
2323
- "../../node_modules/@types/istanbul-lib-report/index.d.ts",
2324
- "../../node_modules/@types/istanbul-lib-coverage/index.d.ts",
2325
- "../../node_modules/@types/node/util.d.ts",
2326
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2327
- ],
2328
- "../../node_modules/@types/istanbul-lib-report/index.d.ts": [
2329
- "../../node_modules/@types/istanbul-lib-coverage/index.d.ts",
2330
- "../../node_modules/@types/node/util.d.ts",
2331
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2332
- ],
2333
- "../../node_modules/@types/istanbul-lib-coverage/index.d.ts": [
2334
- "../../node_modules/@types/node/util.d.ts",
2335
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2336
- ],
2337
- "../../node_modules/@types/node/ts3.2/globals.d.ts": [
2338
- "../../node_modules/@types/node/globals.d.ts",
2339
- "../../node_modules/@types/node/util.d.ts",
2340
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2341
- ],
2342
- "../../node_modules/@types/node/ts3.2/util.d.ts": [
2343
- "../../node_modules/@types/node/util.d.ts"
2344
- ],
2345
- "../../node_modules/@types/node/vm.d.ts": [
2346
- "../../node_modules/@types/node/util.d.ts",
2347
- "../../node_modules/@types/node/ts3.2/util.d.ts"
2348
- ]
2349
- },
2350
- "semanticDiagnosticsPerFile": [
2351
- "../../node_modules/tslib/tslib.d.ts",
2352
- "../utils/lib/getWorkspacePackageDirs.d.ts",
2353
- "../utils/lib/readJson.d.ts",
2354
- "../utils/lib/writeJson.d.ts",
2355
- "../utils/lib/mutateJson.d.ts",
2356
- "../utils/lib/PackageJson.d.ts",
2357
- "../utils/lib/findWorkspaceDir.d.ts",
2358
- "../utils/lib/getPackageNameToDir.d.ts",
2359
- "../utils/lib/index.d.ts",
2360
- "../../node_modules/runtypes/lib/types/literal.d.ts",
2361
- "../../node_modules/runtypes/lib/types/unknown.d.ts",
2362
- "../../node_modules/runtypes/lib/types/constraint.d.ts",
2363
- "../../node_modules/runtypes/lib/types/instanceof.d.ts",
2364
- "../../node_modules/runtypes/lib/reflect.d.ts",
2365
- "../../node_modules/runtypes/lib/runtype.d.ts",
2366
- "../../node_modules/runtypes/lib/result.d.ts",
2367
- "../../node_modules/runtypes/lib/contract.d.ts",
2368
- "../../node_modules/runtypes/lib/match.d.ts",
2369
- "../../node_modules/runtypes/lib/errors.d.ts",
2370
- "../../node_modules/runtypes/lib/types/never.d.ts",
2371
- "../../node_modules/runtypes/lib/types/void.d.ts",
2372
- "../../node_modules/runtypes/lib/types/boolean.d.ts",
2373
- "../../node_modules/runtypes/lib/types/number.d.ts",
2374
- "../../node_modules/runtypes/lib/types/string.d.ts",
2375
- "../../node_modules/runtypes/lib/types/symbol.d.ts",
2376
- "../../node_modules/runtypes/lib/types/array.d.ts",
2377
- "../../node_modules/runtypes/lib/types/tuple.d.ts",
2378
- "../../node_modules/runtypes/lib/types/record.d.ts",
2379
- "../../node_modules/runtypes/lib/types/partial.d.ts",
2380
- "../../node_modules/runtypes/lib/types/dictionary.d.ts",
2381
- "../../node_modules/runtypes/lib/types/union.d.ts",
2382
- "../../node_modules/runtypes/lib/types/intersect.d.ts",
2383
- "../../node_modules/runtypes/lib/types/function.d.ts",
2384
- "../../node_modules/runtypes/lib/types/lazy.d.ts",
2385
- "../../node_modules/runtypes/lib/types/brand.d.ts",
2386
- "../../node_modules/runtypes/lib/decorator.d.ts",
2387
- "../../node_modules/runtypes/lib/index.d.ts",
2388
- "../core/lib/Config.d.ts",
2389
- "../core/lib/PackageContext.d.ts",
2390
- "../core/lib/WorkspaceContext.d.ts",
2391
- "../core/lib/Context.d.ts",
2392
- "../core/lib/check.d.ts",
2393
- "../core/lib/resolveConfig.d.ts",
2394
- "../core/lib/index.d.ts",
2395
- "../../node_modules/jest-diff/build/types.d.ts",
2396
- "../../node_modules/jest-diff/build/index.d.ts",
2397
- "./src/util/checkAlpha.ts",
2398
- "./src/alphabeticalDependencies.ts",
2399
- "./src/alphabeticalScripts.ts",
2400
- "../../node_modules/@types/minimatch/index.d.ts",
2401
- "./src/bannedDependencies.ts",
2402
- "./src/consistentDependencies.ts",
2403
- "./src/util/makeDirectory.ts",
2404
- "./src/fileContents.ts",
2405
- "./src/packageOrder.ts",
2406
- "./src/packageEntry.ts",
2407
- "./src/packageScript.ts",
2408
- "./src/standardTsconfig.ts",
2409
- "./src/index.ts",
2410
- "./src/__tests__/utils.ts",
2411
- "./src/__tests__/alphabeticalScripts.spec.ts",
2412
- "../../node_modules/@types/tmp/index.d.ts",
2413
- "./src/__tests__/consistentDependencies.spec.ts",
2414
- "./src/__tests__/fileContents.spec.ts",
2415
- "./src/__tests__/packageEntry.spec.ts",
2416
- "./src/__tests__/packageOrder.spec.ts",
2417
- "./src/__tests__/packageScript.spec.ts",
2418
- "../../node_modules/@babel/types/lib/index.d.ts",
2419
- "../../node_modules/@types/babel__generator/index.d.ts",
2420
- "../../node_modules/@types/babel__traverse/index.d.ts",
2421
- "../../node_modules/@babel/parser/typings/babel-parser.d.ts",
2422
- "../../node_modules/@types/babel__template/index.d.ts",
2423
- "../../node_modules/@types/babel__core/index.d.ts",
2424
- "../../node_modules/@types/events/index.d.ts",
2425
- "../../node_modules/@types/node/globals.d.ts",
2426
- "../../node_modules/@types/node/assert.d.ts",
2427
- "../../node_modules/@types/node/async_hooks.d.ts",
2428
- "../../node_modules/@types/node/buffer.d.ts",
2429
- "../../node_modules/@types/node/child_process.d.ts",
2430
- "../../node_modules/@types/node/cluster.d.ts",
2431
- "../../node_modules/@types/node/console.d.ts",
2432
- "../../node_modules/@types/node/constants.d.ts",
2433
- "../../node_modules/@types/node/crypto.d.ts",
2434
- "../../node_modules/@types/node/dgram.d.ts",
2435
- "../../node_modules/@types/node/dns.d.ts",
2436
- "../../node_modules/@types/node/domain.d.ts",
2437
- "../../node_modules/@types/node/events.d.ts",
2438
- "../../node_modules/@types/node/fs.d.ts",
2439
- "../../node_modules/@types/node/http.d.ts",
2440
- "../../node_modules/@types/node/http2.d.ts",
2441
- "../../node_modules/@types/node/https.d.ts",
2442
- "../../node_modules/@types/node/inspector.d.ts",
2443
- "../../node_modules/@types/node/module.d.ts",
2444
- "../../node_modules/@types/node/net.d.ts",
2445
- "../../node_modules/@types/node/os.d.ts",
2446
- "../../node_modules/@types/node/path.d.ts",
2447
- "../../node_modules/@types/node/perf_hooks.d.ts",
2448
- "../../node_modules/@types/node/process.d.ts",
2449
- "../../node_modules/@types/node/punycode.d.ts",
2450
- "../../node_modules/@types/node/querystring.d.ts",
2451
- "../../node_modules/@types/node/readline.d.ts",
2452
- "../../node_modules/@types/node/repl.d.ts",
2453
- "../../node_modules/@types/node/stream.d.ts",
2454
- "../../node_modules/@types/node/string_decoder.d.ts",
2455
- "../../node_modules/@types/node/timers.d.ts",
2456
- "../../node_modules/@types/node/tls.d.ts",
2457
- "../../node_modules/@types/node/trace_events.d.ts",
2458
- "../../node_modules/@types/node/tty.d.ts",
2459
- "../../node_modules/@types/node/url.d.ts",
2460
- "../../node_modules/@types/node/util.d.ts",
2461
- "../../node_modules/@types/node/v8.d.ts",
2462
- "../../node_modules/@types/node/vm.d.ts",
2463
- "../../node_modules/@types/node/worker_threads.d.ts",
2464
- "../../node_modules/@types/node/zlib.d.ts",
2465
- "../../node_modules/@types/node/base.d.ts",
2466
- "../../node_modules/@types/node/ts3.2/util.d.ts",
2467
- "../../node_modules/@types/node/ts3.2/globals.d.ts",
2468
- "../../node_modules/@types/node/ts3.2/index.d.ts",
2469
- "../../node_modules/@types/glob/index.d.ts",
2470
- "../../node_modules/@types/istanbul-lib-coverage/index.d.ts",
2471
- "../../node_modules/@types/istanbul-lib-report/index.d.ts",
2472
- "../../node_modules/@types/istanbul-reports/index.d.ts",
2473
- "../../node_modules/@types/jest-diff/index.d.ts",
2474
- "../../node_modules/@types/jest/index.d.ts",
2475
- "../../node_modules/@types/mock-fs/index.d.ts",
2476
- "../../node_modules/@types/normalize-package-data/index.d.ts",
2477
- "../../node_modules/@types/stack-utils/index.d.ts",
2478
- "../../node_modules/@types/yargs-parser/index.d.ts",
2479
- "../../node_modules/@types/yargs/index.d.ts",
2480
- "../../node_modules/typescript/lib/lib.es2015.d.ts",
2481
- "../../node_modules/typescript/lib/lib.es2016.d.ts",
2482
- "../../node_modules/typescript/lib/lib.es2017.d.ts",
2483
- "../../node_modules/typescript/lib/lib.es2018.d.ts",
2484
- "../../node_modules/typescript/lib/lib.esnext.bigint.d.ts",
2485
- "../../node_modules/typescript/lib/lib.esnext.intl.d.ts",
2486
- "../../node_modules/typescript/lib/lib.es2018.regexp.d.ts",
2487
- "../../node_modules/typescript/lib/lib.es2018.promise.d.ts",
2488
- "../../node_modules/typescript/lib/lib.es2018.intl.d.ts",
2489
- "../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts",
2490
- "../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts",
2491
- "../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts",
2492
- "../../node_modules/typescript/lib/lib.es2017.intl.d.ts",
2493
- "../../node_modules/typescript/lib/lib.es2017.string.d.ts",
2494
- "../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts",
2495
- "../../node_modules/typescript/lib/lib.es2017.object.d.ts",
2496
- "../../node_modules/typescript/lib/lib.es2016.array.include.d.ts",
2497
- "../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
2498
- "../../node_modules/typescript/lib/lib.es2015.symbol.d.ts",
2499
- "../../node_modules/typescript/lib/lib.es2015.reflect.d.ts",
2500
- "../../node_modules/typescript/lib/lib.es2015.proxy.d.ts",
2501
- "../../node_modules/typescript/lib/lib.es2015.promise.d.ts",
2502
- "../../node_modules/typescript/lib/lib.es2015.iterable.d.ts",
2503
- "../../node_modules/typescript/lib/lib.es2015.generator.d.ts",
2504
- "../../node_modules/typescript/lib/lib.es2015.collection.d.ts",
2505
- "../../node_modules/typescript/lib/lib.es2015.core.d.ts",
2506
- "../../node_modules/typescript/lib/lib.es5.d.ts"
2507
- ]
2508
- },
2509
- "version": "3.6.2"
2510
- }