You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1291 lines
60 KiB

  1. {
  2. "name": "gitlens",
  3. "version": "4.0.0-beta.2",
  4. "author": {
  5. "name": "Eric Amodio",
  6. "email": "eamodio@gmail.com"
  7. },
  8. "publisher": "eamodio",
  9. "engines": {
  10. "vscode": "^1.12.0"
  11. },
  12. "license": "SEE LICENSE IN LICENSE",
  13. "displayName": "Git Lens \u2014 git blame annotations, code lens, and more",
  14. "description": "Supercharge Visual Studio Code's Git capabilities \u2014 Visualize code authorship at a glance via Git blame annotations and code lens, seamlessly navigate and explore the history of a file or branch, gain valuable insights via powerful comparision commands, and so much more",
  15. "badges": [
  16. {
  17. "url": "https://badges.gitter.im/vscode-gitlens/Lobby.svg",
  18. "href": "https://gitter.im/vscode-gitlens/Lobby",
  19. "description": "Chat at https://gitter.im/vscode-gitlens/Lobby"
  20. }
  21. ],
  22. "categories": [
  23. "Other"
  24. ],
  25. "keywords": [
  26. "git",
  27. "code lens",
  28. "blame",
  29. "history",
  30. "annotation",
  31. "log",
  32. "inline blame",
  33. "compare",
  34. "diff"
  35. ],
  36. "galleryBanner": {
  37. "color": "#56098c",
  38. "theme": "dark"
  39. },
  40. "icon": "images/gitlens-icon.svg",
  41. "preview": false,
  42. "homepage": "https://github.com/eamodio/vscode-gitlens/blob/master/README.md",
  43. "bugs": {
  44. "url": "https://github.com/eamodio/vscode-gitlens/issues"
  45. },
  46. "repository": {
  47. "type": "git",
  48. "url": "https://github.com/eamodio/vscode-gitlens.git"
  49. },
  50. "main": "./out/src/extension",
  51. "contributes": {
  52. "configuration": {
  53. "type": "object",
  54. "title": "GitLens configuration",
  55. "properties": {
  56. "gitlens.debug": {
  57. "type": "boolean",
  58. "default": false,
  59. "description": "Specifies debug mode"
  60. },
  61. "gitlens.insiders": {
  62. "type": "boolean",
  63. "default": false,
  64. "description": "Specifies whether or not to enable new experimental features (expect there to be issues)"
  65. },
  66. "gitlens.outputLevel": {
  67. "type": "string",
  68. "default": "silent",
  69. "enum": [
  70. "silent",
  71. "errors",
  72. "verbose"
  73. ],
  74. "description": "Specifies how much (if any) output will be sent to the GitLens output channel"
  75. },
  76. "gitlens.annotations.file.gutter.format": {
  77. "type": "string",
  78. "default": "${message|40?} ${ago|14-}",
  79. "description": "Specifies the format of the gutter blame annotations\nAvailable tokens\n ${id} - commit id\n ${author} - commit author\n ${message} - commit message\n ${ago} - relative commit date (e.g. 1 day ago)\n ${date} - formatted commit date (format specified by `gitlens.annotations.file.gutter.dateFormat`)\n ${authorAgo} - commit author, relative commit date\nSee https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting for advanced formatting"
  80. },
  81. "gitlens.annotations.file.gutter.dateFormat": {
  82. "type": "string",
  83. "default": null,
  84. "description": "Specifies how to format absolute dates (using the `${date}` token) in gutter blame annotations\nSee https://momentjs.com/docs/#/displaying/format/ for valid formats"
  85. },
  86. "gitlens.annotations.file.gutter.compact": {
  87. "type": "boolean",
  88. "default": true,
  89. "description": "Specifies whether or not to compact (deduplicate) matching adjacent gutter blame annotations"
  90. },
  91. "gitlens.annotations.file.gutter.heatmap.enabled": {
  92. "type": "boolean",
  93. "default": true,
  94. "description": "Specifies whether or not to provide a heatmap indicator in the gutter blame annotations"
  95. },
  96. "gitlens.annotations.file.gutter.heatmap.location": {
  97. "type": "string",
  98. "default": "right",
  99. "enum": [
  100. "left",
  101. "right"
  102. ],
  103. "description": "Specifies where the heatmap indicators will be shown in the gutter blame annotations\n `left` - adds a heatmap indicator on the left edge of the gutter blame annotations\n `right` - adds a heatmap indicator on the right edge of the gutter blame annotations"
  104. },
  105. "gitlens.annotations.file.gutter.hover.details": {
  106. "type": "boolean",
  107. "default": true,
  108. "description": "Specifies whether or not to provide a commit details hover annotation over the gutter blame annotations"
  109. },
  110. "gitlens.annotations.file.gutter.hover.wholeLine": {
  111. "type": "boolean",
  112. "default": false,
  113. "description": "Specifies whether or not to trigger hover annotations over the whole line"
  114. },
  115. "gitlens.annotations.file.hover.heatmap.enabled": {
  116. "type": "boolean",
  117. "default": true,
  118. "description": "Specifies whether or not to provide heatmap indicators on the left edge of each line"
  119. },
  120. "gitlens.annotations.file.hover.wholeLine": {
  121. "type": "boolean",
  122. "default": true,
  123. "description": "Specifies whether or not to trigger hover annotations over the whole line"
  124. },
  125. "gitlens.annotations.line.hover.details": {
  126. "type": "boolean",
  127. "default": true,
  128. "description": "Specifies whether or not to provide a commit details hover annotation for the current line"
  129. },
  130. "gitlens.annotations.line.hover.changes": {
  131. "type": "boolean",
  132. "default": true,
  133. "description": "Specifies whether or not to provide a changes (diff) hover annotation for the current line"
  134. },
  135. "gitlens.annotations.line.trailing.format": {
  136. "type": "string",
  137. "default": "${authorAgo} \u2022 ${message}",
  138. "description": "Specifies the format of the trailing blame annotations\nAvailable tokens\n ${id} - commit id\n ${author} - commit author\n ${message} - commit message\n ${ago} - relative commit date (e.g. 1 day ago)\n ${date} - formatted commit date (format specified by `gitlens.annotations.line.trailing.dateFormat`)\n ${authorAgo} - commit author, relative commit date\nSee https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting for advanced formatting"
  139. },
  140. "gitlens.annotations.line.trailing.dateFormat": {
  141. "type": "string",
  142. "default": null,
  143. "description": "Specifies how to format absolute dates (using the `${date}` token) in trailing blame annotations\nSee https://momentjs.com/docs/#/displaying/format/ for valid formats"
  144. },
  145. "gitlens.annotations.line.trailing.hover.details": {
  146. "type": "boolean",
  147. "default": true,
  148. "description": "Specifies whether or not to provide a commit details hover annotation over the trailing blame annotations"
  149. },
  150. "gitlens.annotations.line.trailing.hover.changes": {
  151. "type": "boolean",
  152. "default": true,
  153. "description": "Specifies whether or not to provide a changes (diff) hover annotation over the trailing blame annotations"
  154. },
  155. "gitlens.annotations.line.trailing.hover.wholeLine": {
  156. "type": "boolean",
  157. "default": false,
  158. "description": "Specifies whether or not to trigger hover annotations over the whole line"
  159. },
  160. "gitlens.blame.file.annotationType": {
  161. "type": "string",
  162. "default": "gutter",
  163. "enum": [
  164. "gutter",
  165. "hover"
  166. ],
  167. "description": "Specifies the type of blame annotations that will be shown for the current file\n `gutter` - adds an annotation to the beginning of each line\n `hover` - shows annotations when hovering over each line"
  168. },
  169. "gitlens.blame.file.lineHighlight.enabled": {
  170. "type": "boolean",
  171. "default": true,
  172. "description": "Specifies whether or not to highlight lines associated with the current line"
  173. },
  174. "gitlens.blame.file.lineHighlight.locations": {
  175. "type": "array",
  176. "default": [
  177. "gutter",
  178. "line",
  179. "overviewRuler"
  180. ],
  181. "items": {
  182. "type": "string",
  183. "enum": [
  184. "gutter",
  185. "line",
  186. "overviewRuler"
  187. ]
  188. },
  189. "minItems": 1,
  190. "maxItems": 3,
  191. "uniqueItems": true,
  192. "description": "Specifies where the associated line highlights will be shown\n `gutter` - adds a gutter glyph\n `line` - adds a full-line highlight background color\n `overviewRuler` - adds a decoration to the overviewRuler (scroll bar)"
  193. },
  194. "gitlens.blame.line.enabled": {
  195. "type": "boolean",
  196. "default": true,
  197. "description": "Specifies whether or not to provide a blame annotation for the current line"
  198. },
  199. "gitlens.blame.line.annotationType": {
  200. "type": "string",
  201. "default": "trailing",
  202. "enum": [
  203. "trailing",
  204. "hover"
  205. ],
  206. "description": "Specifies the type of blame annotations that will be shown for the current line\n `trailing` - adds an annotation to the end of the current line\n `hover` - shows annotations when hovering over the current line"
  207. },
  208. "gitlens.codeLens.enabled": {
  209. "type": "boolean",
  210. "default": true,
  211. "description": "Specifies whether or not to provide any Git code lens"
  212. },
  213. "gitlens.codeLens.recentChange.enabled": {
  214. "type": "boolean",
  215. "default": true,
  216. "description": "Specifies whether or not to show a `recent change` code lens showing the author and date of the most recent commit for the file or code block"
  217. },
  218. "gitlens.codeLens.recentChange.command": {
  219. "type": "string",
  220. "default": "gitlens.showQuickCommitFileDetails",
  221. "enum": [
  222. "gitlens.toggleFileBlame",
  223. "gitlens.showBlameHistory",
  224. "gitlens.showFileHistory",
  225. "gitlens.diffWithPrevious",
  226. "gitlens.showQuickCommitDetails",
  227. "gitlens.showQuickCommitFileDetails",
  228. "gitlens.showQuickFileHistory",
  229. "gitlens.showQuickRepoHistory"
  230. ],
  231. "description": "Specifies the command to be executed when the `recent change` code lens is clicked\n `gitlens.toggleFileBlame` - toggles file blame annotations\n `gitlens.showBlameHistory` - opens the blame history explorer\n `gitlens.showFileHistory` - opens the file history explorer\n `gitlens.diffWithPrevious` - compares the current committed file with the previous commit\n `gitlens.showQuickCommitDetails` - shows a commit details quick pick\n `gitlens.showQuickCommitFileDetails` - shows a commit file details quick pick\n `gitlens.showQuickFileHistory` - shows a file history quick pick\n `gitlens.showQuickRepoHistory` - shows a branch history quick pick"
  232. },
  233. "gitlens.codeLens.authors.enabled": {
  234. "type": "boolean",
  235. "default": true,
  236. "description": "Specifies whether or not to show an `authors` code lens showing number of authors of the file or code block and the most prominent author (if there is more than one)"
  237. },
  238. "gitlens.codeLens.authors.command": {
  239. "type": "string",
  240. "default": "gitlens.toggleFileBlame",
  241. "enum": [
  242. "gitlens.toggleFileBlame",
  243. "gitlens.showBlameHistory",
  244. "gitlens.showFileHistory",
  245. "gitlens.diffWithPrevious",
  246. "gitlens.showQuickCommitDetails",
  247. "gitlens.showQuickCommitFileDetails",
  248. "gitlens.showQuickFileHistory",
  249. "gitlens.showQuickRepoHistory"
  250. ],
  251. "description": "Specifies the command to be executed when the `authors` code lens is clicked\n `gitlens.toggleFileBlame` - toggles file blame annotations\n `gitlens.showBlameHistory` - opens the blame history explorer\n `gitlens.showFileHistory` - opens the file history explorer\n `gitlens.diffWithPrevious` - compares the current committed file with the previous commit\n `gitlens.showQuickCommitDetails` - shows a commit details quick pick\n `gitlens.showQuickCommitFileDetails` - shows a commit file details quick pick\n `gitlens.showQuickFileHistory` - shows a file history quick pick\n `gitlens.showQuickRepoHistory` - shows a branch history quick pick"
  252. },
  253. "gitlens.codeLens.locations": {
  254. "type": "array",
  255. "default": [
  256. "document",
  257. "containers"
  258. ],
  259. "items": {
  260. "type": "string",
  261. "enum": [
  262. "document",
  263. "containers",
  264. "blocks",
  265. "custom"
  266. ]
  267. },
  268. "minItems": 1,
  269. "maxItems": 4,
  270. "uniqueItems": true,
  271. "description": "Specifies where Git code lens will be shown in the document\n `document` - adds code lens at the top of the document\n `containers` - adds code lens at the start of container-like symbols (modules, classes, interfaces, etc)\n `blocks` - adds code lens at the start of block-like symbols (functions, methods, properties, etc) lines\n `custom` - adds code lens at the start of symbols contained in `gitlens.codeLens.locationCustomSymbols`"
  272. },
  273. "gitlens.codeLens.customLocationSymbols": {
  274. "type": "array",
  275. "items": {
  276. "type": "string"
  277. },
  278. "uniqueItems": true,
  279. "description": "Specifies the set of document symbols where Git code lens will be shown in the document\nMust be a member of `SymbolKind`"
  280. },
  281. "gitlens.codeLens.perLanguageLocations": {
  282. "type": "array",
  283. "default": [
  284. {
  285. "language": "css",
  286. "locations": [
  287. "document"
  288. ]
  289. },
  290. {
  291. "language": "html",
  292. "locations": [
  293. "document"
  294. ]
  295. },
  296. {
  297. "language": "json",
  298. "locations": [
  299. "document"
  300. ]
  301. },
  302. {
  303. "language": "less",
  304. "locations": [
  305. "document"
  306. ]
  307. },
  308. {
  309. "language": "scss",
  310. "locations": [
  311. "document"
  312. ]
  313. },
  314. {
  315. "language": "vue",
  316. "locations": [
  317. "document"
  318. ]
  319. }
  320. ],
  321. "items": {
  322. "type": "object",
  323. "required": [
  324. "language",
  325. "locations"
  326. ],
  327. "properties": {
  328. "language": {
  329. "type": "string",
  330. "description": "Specifies the language to which this code lens override applies"
  331. },
  332. "locations": {
  333. "type": "array",
  334. "default": [
  335. "document",
  336. "containers"
  337. ],
  338. "items": {
  339. "type": "string",
  340. "enum": [
  341. "document",
  342. "containers",
  343. "blocks",
  344. "custom"
  345. ]
  346. },
  347. "minItems": 1,
  348. "maxItems": 4,
  349. "uniqueItems": true,
  350. "description": "Specifies where Git code lens will be shown in the document for the specified language\n `document` - adds code lens at the top of the document\n `containers` - adds code lens at the start of container-like symbols (modules, classes, interfaces, etc)\n `blocks` - adds code lens at the start of block-like symbols (functions, methods, properties, etc) lines\n `custom` - adds code lens at the start of symbols contained in `customSymbols`"
  351. },
  352. "customSymbols": {
  353. "type": "array",
  354. "items": {
  355. "type": "string"
  356. },
  357. "uniqueItems": true,
  358. "description": "Specifies the set of document symbols where Git code lens will be shown in the document for the specified language\nMust be a member of `SymbolKind`"
  359. }
  360. }
  361. },
  362. "uniqueItems": true,
  363. "description": "Specifies where Git code lens will be shown in the document for the specified languages"
  364. },
  365. "gitlens.codeLens.debug": {
  366. "type": "boolean",
  367. "default": false,
  368. "description": "Specifies whether or not to show debug information in code lens"
  369. },
  370. "gitlens.statusBar.enabled": {
  371. "type": "boolean",
  372. "default": true,
  373. "description": "Specifies whether or not to provide blame information on the status bar"
  374. },
  375. "gitlens.statusBar.alignment": {
  376. "type": "string",
  377. "default": "right",
  378. "enum": [
  379. "left",
  380. "right"
  381. ],
  382. "description": "Specifies the blame alignment in the status bar\n `left` - align to the left\n `right` - align to the right"
  383. },
  384. "gitlens.statusBar.command": {
  385. "type": "string",
  386. "default": "gitlens.showQuickCommitDetails",
  387. "enum": [
  388. "gitlens.toggleFileBlame",
  389. "gitlens.showBlameHistory",
  390. "gitlens.showFileHistory",
  391. "gitlens.diffWithPrevious",
  392. "gitlens.diffWithWorking",
  393. "gitlens.toggleCodeLens",
  394. "gitlens.showQuickCommitDetails",
  395. "gitlens.showQuickCommitFileDetails",
  396. "gitlens.showQuickFileHistory",
  397. "gitlens.showQuickRepoHistory"
  398. ],
  399. "description": "Specifies the command to be executed when the blame status bar item is clicked\n `gitlens.toggleFileBlame` - toggles file blame annotations\n `gitlens.showBlameHistory` - opens the blame history explorer\n `gitlens.showFileHistory` - opens the file history explorer\n `gitlens.diffWithPrevious` - compares the current line commit with the previous\n `gitlens.diffWithWorking` - compares the current line commit with the working tree\n `gitlens.toggleCodeLens` - toggles Git code lens\n `gitlens.showQuickCommitDetails` - shows a commit details quick pick\n `gitlens.showQuickCommitFileDetails` - shows a commit file details quick pick\n `gitlens.showQuickFileHistory` - shows a file history quick pick\n `gitlens.showQuickRepoHistory` - shows a branch history quick pick"
  400. },
  401. "gitlens.statusBar.format": {
  402. "type": "string",
  403. "default": "${authorAgo}",
  404. "description": "Specifies the format of the status bar blame information\nAvailable tokens\n ${id} - commit id\n ${author} - commit author\n ${message} - commit message\n ${ago} - relative commit date (e.g. 1 day ago)\n ${date} - formatted commit date (format specified by `gitlens.statusBar.dateFormat`)\n ${authorAgo} - commit author, relative commit date\nSee https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting for advanced formatting"
  405. },
  406. "gitlens.statusBar.dateFormat": {
  407. "type": "string",
  408. "default": null,
  409. "description": "Specifies the date format of absolute dates shown in the blame information on the status bar. See https://momentjs.com/docs/#/displaying/format/ for valid formats"
  410. },
  411. "gitlens.strings.codeLens.unsavedChanges.recentChangeAndAuthors": {
  412. "type": "string",
  413. "default": "Cannot determine recent change or authors (unsaved changes)",
  414. "description": "Specifies the string to be shown in place of both the `recent change` and `authors` code lens when there are unsaved changes"
  415. },
  416. "gitlens.strings.codeLens.unsavedChanges.recentChangeOnly": {
  417. "type": "string",
  418. "default": "Cannot determine recent change (unsaved changes)",
  419. "description": "Specifies the string to be shown in place of the `recent change` code lens when there are unsaved changes"
  420. },
  421. "gitlens.strings.codeLens.unsavedChanges.authorsOnly": {
  422. "type": "string",
  423. "default": "Cannot determine authors (unsaved changes)",
  424. "description": "Specifies the string to be shown in place of the `authors` code lens when there are unsaved changes"
  425. },
  426. "gitlens.theme.annotations.file.gutter.separateLines": {
  427. "type": "boolean",
  428. "default": true,
  429. "description": "Specifies whether or not gutter blame annotations will be separated by a small gap"
  430. },
  431. "gitlens.theme.annotations.file.gutter.dark.backgroundColor": {
  432. "type": "string",
  433. "default": "rgba(255, 255, 255, 0.075)",
  434. "description": "Specifies the dark theme background color of the gutter blame annotations. Must be a valid css color"
  435. },
  436. "gitlens.theme.annotations.file.gutter.light.backgroundColor": {
  437. "type": "string",
  438. "default": "rgba(0, 0, 0, 0.05)",
  439. "description": "Specifies the light theme background color of the gutter blame annotations. Must be a valid css color"
  440. },
  441. "gitlens.theme.annotations.file.gutter.dark.foregroundColor": {
  442. "type": "string",
  443. "default": "rgb(190, 190, 190)",
  444. "description": "Specifies the dark theme foreground color of the gutter blame annotations. Must be a valid css color"
  445. },
  446. "gitlens.theme.annotations.file.gutter.light.foregroundColor": {
  447. "type": "string",
  448. "default": "rgb(116, 116, 116)",
  449. "description": "Specifies the light theme foreground color of the gutter blame annotations. Must be a valid css color"
  450. },
  451. "gitlens.theme.annotations.file.gutter.dark.uncommittedForegroundColor": {
  452. "type": "string",
  453. "default": "rgba(0, 188, 242, 0.6)",
  454. "description": "Specifies the dark theme foreground color of an uncommitted line in the gutter blame annotations. Must be a valid css color"
  455. },
  456. "gitlens.theme.annotations.file.gutter.light.uncommittedForegroundColor": {
  457. "type": "string",
  458. "default": "rgba(0, 188, 242, 0.6)",
  459. "description": "Specifies the light theme foreground color of an uncommitted line in the gutter blame annotations. Must be a valid css color"
  460. },
  461. "gitlens.theme.annotations.file.hover.separateLines": {
  462. "type": "boolean",
  463. "default": false,
  464. "description": "Specifies whether or not hover blame annotations will be separated by a small gap (if heatmap is enabled)"
  465. },
  466. "gitlens.theme.annotations.line.trailing.dark.backgroundColor": {
  467. "type": "string",
  468. "default": null,
  469. "description": "Specifies the dark theme background color of the trailing blame annotation. Must be a valid css color"
  470. },
  471. "gitlens.theme.annotations.line.trailing.light.backgroundColor": {
  472. "type": "string",
  473. "default": null,
  474. "description": "Specifies the light theme background color of the trailing blame annotation. Must be a valid css color"
  475. },
  476. "gitlens.theme.annotations.line.trailing.dark.foregroundColor": {
  477. "type": "string",
  478. "default": "rgba(153, 153, 153, 0.35)",
  479. "description": "Specifies the dark theme foreground color of the trailing blame annotation. Must be a valid css color"
  480. },
  481. "gitlens.theme.annotations.line.trailing.light.foregroundColor": {
  482. "type": "string",
  483. "default": "rgba(153, 153, 153, 0.35)",
  484. "description": "Specifies the light theme foreground color of the trailing blame annotation. Must be a valid css color"
  485. },
  486. "gitlens.theme.lineHighlight.dark.backgroundColor": {
  487. "type": "string",
  488. "default": "rgba(0, 188, 242, 0.2)",
  489. "description": "Specifies the dark theme background color of the associated line highlights in blame annotations. Must be a valid css color"
  490. },
  491. "gitlens.theme.lineHighlight.light.backgroundColor": {
  492. "type": "string",
  493. "default": "rgba(0, 188, 242, 0.2)",
  494. "description": "Specifies the light theme background color of the associated line highlights in blame annotations. Must be a valid css color"
  495. },
  496. "gitlens.theme.lineHighlight.dark.overviewRulerColor": {
  497. "type": "string",
  498. "default": "rgba(0, 188, 242, 0.6)",
  499. "description": "Specifies the dark theme overview ruler color of the associated line highlights in blame annotations. Must be a valid css color"
  500. },
  501. "gitlens.theme.lineHighlight.light.overviewRulerColor": {
  502. "type": "string",
  503. "default": "rgba(0, 188, 242, 0.6)",
  504. "description": "Specifies the light theme overview ruler color of the associated line highlights in blame annotations. Must be a valid css color"
  505. },
  506. "gitlens.advanced.caching.enabled": {
  507. "type": "boolean",
  508. "default": true,
  509. "description": "Specifies whether git output will be cached"
  510. },
  511. "gitlens.advanced.caching.maxLines": {
  512. "type": "number",
  513. "default": 0,
  514. "description": "Specifies the threshold for caching larger documents"
  515. },
  516. "gitlens.advanced.git": {
  517. "type": "string",
  518. "default": null,
  519. "description": "Specifies the git path to use"
  520. },
  521. "gitlens.advanced.gitignore.enabled": {
  522. "type": "boolean",
  523. "default": true,
  524. "description": "Specifies whether or not to parse the root .gitignore file for better performance (i.e. avoids blaming excluded files)"
  525. },
  526. "gitlens.advanced.maxQuickHistory": {
  527. "type": "number",
  528. "default": 200,
  529. "description": "Specifies the maximum number of QuickPick history entries to show"
  530. },
  531. "gitlens.advanced.menus": {
  532. "type": "object",
  533. "default": {
  534. "editorContext": {
  535. "blame": true,
  536. "copy": true,
  537. "details": true,
  538. "fileDiff": true,
  539. "history": true,
  540. "lineDiff": true,
  541. "remote": true
  542. },
  543. "editorTitle": {
  544. "blame": true,
  545. "fileDiff": true,
  546. "history": true,
  547. "remote": true,
  548. "status": true
  549. },
  550. "editorTitleContext": {
  551. "blame": true,
  552. "fileDiff": true,
  553. "history": true,
  554. "remote": true
  555. },
  556. "explorerContext": {
  557. "fileDiff": true,
  558. "history": true,
  559. "remote": true
  560. }
  561. },
  562. "description": "Specifies which commands will be added to which menus",
  563. "properties": {
  564. "editorContext": {
  565. "type": "object",
  566. "default": {
  567. "blame": true,
  568. "copy": true,
  569. "details": true,
  570. "fileDiff": true,
  571. "history": true,
  572. "lineDiff": true,
  573. "remote": true
  574. },
  575. "properties": {
  576. "blame": {
  577. "type": "boolean",
  578. "default": true
  579. },
  580. "copy": {
  581. "type": "boolean",
  582. "default": true
  583. },
  584. "details": {
  585. "type": "boolean",
  586. "default": true
  587. },
  588. "fileDiff": {
  589. "type": "boolean",
  590. "default": true
  591. },
  592. "history": {
  593. "type": "boolean",
  594. "default": true
  595. },
  596. "lineDiff": {
  597. "type": "boolean",
  598. "default": true
  599. },
  600. "remote": {
  601. "type": "boolean",
  602. "default": true
  603. }
  604. }
  605. },
  606. "editorTitle": {
  607. "type": "object",
  608. "default": {
  609. "blame": true,
  610. "fileDiff": true,
  611. "history": true,
  612. "remote": true,
  613. "status": true
  614. },
  615. "properties": {
  616. "blame": {
  617. "type": "boolean",
  618. "default": true
  619. },
  620. "fileDiff": {
  621. "type": "boolean",
  622. "default": true
  623. },
  624. "history": {
  625. "type": "boolean",
  626. "default": true
  627. },
  628. "remote": {
  629. "type": "boolean",
  630. "default": true
  631. },
  632. "status": {
  633. "type": "boolean",
  634. "default": true
  635. }
  636. }
  637. },
  638. "editorTitleContext": {
  639. "type": "object",
  640. "default": {
  641. "blame": true,
  642. "fileDiff": true,
  643. "history": true,
  644. "remote": true
  645. },
  646. "properties": {
  647. "blame": {
  648. "type": "boolean",
  649. "default": true
  650. },
  651. "fileDiff": {
  652. "type": "boolean",
  653. "default": true
  654. },
  655. "history": {
  656. "type": "boolean",
  657. "default": true
  658. },
  659. "remote": {
  660. "type": "boolean",
  661. "default": true
  662. }
  663. }
  664. },
  665. "explorerContext": {
  666. "type": "object",
  667. "default": {
  668. "fileDiff": true,
  669. "history": true,
  670. "remote": true
  671. },
  672. "properties": {
  673. "fileDiff": {
  674. "type": "boolean",
  675. "default": true
  676. },
  677. "history": {
  678. "type": "boolean",
  679. "default": true
  680. },
  681. "remote": {
  682. "type": "boolean",
  683. "default": true
  684. }
  685. }
  686. }
  687. }
  688. },
  689. "gitlens.advanced.quickPick.closeOnFocusOut": {
  690. "type": "boolean",
  691. "default": true,
  692. "description": "Specifies whether or not to close the QuickPick menu when focus is lost"
  693. },
  694. "gitlens.advanced.telemetry.enabled": {
  695. "type": "boolean",
  696. "default": true,
  697. "description": "Specifies whether or not to enable GitLens telemetry (even if enabled still abides by the overall `telemetry.enableTelemetry` setting"
  698. },
  699. "gitlens.advanced.toggleWhitespace.enabled": {
  700. "type": "boolean",
  701. "default": false,
  702. "description": "Specifies whether or not to toggle whitespace off then showing blame annotations (*may* be required by certain fonts/themes)"
  703. }
  704. }
  705. },
  706. "commands": [
  707. {
  708. "command": "gitlens.diffDirectory",
  709. "title": "Directory Compare",
  710. "category": "GitLens"
  711. },
  712. {
  713. "command": "gitlens.diffWithBranch",
  714. "title": "Compare File with...",
  715. "category": "GitLens"
  716. },
  717. {
  718. "command": "gitlens.diffWithNext",
  719. "title": "Compare File with Next Commit",
  720. "category": "GitLens"
  721. },
  722. {
  723. "command": "gitlens.diffWithPrevious",
  724. "title": "Compare File with Previous",
  725. "category": "GitLens"
  726. },
  727. {
  728. "command": "gitlens.diffLineWithPrevious",
  729. "title": "Compare Line Commit with Previous",
  730. "category": "GitLens"
  731. },
  732. {
  733. "command": "gitlens.diffWithWorking",
  734. "title": "Compare File with Working Tree",
  735. "category": "GitLens"
  736. },
  737. {
  738. "command": "gitlens.diffLineWithWorking",
  739. "title": "Compare Line Commit with Working Tree",
  740. "category": "GitLens"
  741. },
  742. {
  743. "command": "gitlens.showFileBlame",
  744. "title": "Show File Blame Annotations",
  745. "category": "GitLens"
  746. },
  747. {
  748. "command": "gitlens.showLineBlame",
  749. "title": "Show Line Blame Annotations",
  750. "category": "GitLens"
  751. },
  752. {
  753. "command": "gitlens.toggleFileBlame",
  754. "title": "Toggle File Blame Annotations",
  755. "category": "GitLens",
  756. "icon": {
  757. "dark": "images/git-icon-dark.svg",
  758. "light": "images/git-icon-light.svg"
  759. }
  760. },
  761. {
  762. "command": "gitlens.toggleLineBlame",
  763. "title": "Toggle Line Blame Annotations",
  764. "category": "GitLens"
  765. },
  766. {
  767. "command": "gitlens.toggleCodeLens",
  768. "title": "Toggle Git Code Lens",
  769. "category": "GitLens"
  770. },
  771. {
  772. "command": "gitlens.showBlameHistory",
  773. "title": "Open Blame History Explorer",
  774. "category": "GitLens"
  775. },
  776. {
  777. "command": "gitlens.showCommitSearch",
  778. "title": "Search Commits",
  779. "category": "GitLens"
  780. },
  781. {
  782. "command": "gitlens.showFileHistory",
  783. "title": "Open File History Explorer",
  784. "category": "GitLens"
  785. },
  786. {
  787. "command": "gitlens.showLastQuickPick",
  788. "title": "Show Last Opened Quick Pick",
  789. "category": "GitLens"
  790. },
  791. {
  792. "command": "gitlens.showQuickCommitDetails",
  793. "title": "Show Commit Details",
  794. "category": "GitLens"
  795. },
  796. {
  797. "command": "gitlens.showQuickCommitFileDetails",
  798. "title": "Show Line Commit Details",
  799. "category": "GitLens"
  800. },
  801. {
  802. "command": "gitlens.showQuickFileHistory",
  803. "title": "Show File History",
  804. "category": "GitLens"
  805. },
  806. {
  807. "command": "gitlens.showQuickBranchHistory",
  808. "title": "Show Branch History",
  809. "category": "GitLens"
  810. },
  811. {
  812. "command": "gitlens.showQuickRepoHistory",
  813. "title": "Show Current Branch History",
  814. "category": "GitLens"
  815. },
  816. {
  817. "command": "gitlens.showQuickRepoStatus",
  818. "title": "Show Repository Status",
  819. "category": "GitLens"
  820. },
  821. {
  822. "command": "gitlens.showQuickStashList",
  823. "title": "Show Stashed Changes",
  824. "category": "GitLens"
  825. },
  826. {
  827. "command": "gitlens.copyShaToClipboard",
  828. "title": "Copy Commit ID to Clipboard",
  829. "category": "GitLens"
  830. },
  831. {
  832. "command": "gitlens.copyMessageToClipboard",
  833. "title": "Copy Commit Message to Clipboard",
  834. "category": "GitLens"
  835. },
  836. {
  837. "command": "gitlens.closeUnchangedFiles",
  838. "title": "Close Unchanged Files",
  839. "category": "GitLens"
  840. },
  841. {
  842. "command": "gitlens.openChangedFiles",
  843. "title": "Open Changed Files",
  844. "category": "GitLens"
  845. },
  846. {
  847. "command": "gitlens.openBranchInRemote",
  848. "title": "Open Branch in Remote",
  849. "category": "GitLens"
  850. },
  851. {
  852. "command": "gitlens.openCommitInRemote",
  853. "title": "Open Line Commit in Remote",
  854. "category": "GitLens"
  855. },
  856. {
  857. "command": "gitlens.openFileInRemote",
  858. "title": "Open File in Remote",
  859. "category": "GitLens"
  860. },
  861. {
  862. "command": "gitlens.openRepoInRemote",
  863. "title": "Open Repository in Remote",
  864. "category": "GitLens"
  865. },
  866. {
  867. "command": "gitlens.stashApply",
  868. "title": "Apply Stashed Changes",
  869. "category": "GitLens"
  870. },
  871. {
  872. "command": "gitlens.stashSave",
  873. "title": "Stash Changes",
  874. "category": "GitLens"
  875. }
  876. ],
  877. "menus": {
  878. "commandPalette": [
  879. {
  880. "command": "gitlens.diffDirectory",
  881. "when": "gitlens:enabled"
  882. },
  883. {
  884. "command": "gitlens.diffWithBranch",
  885. "when": "gitlens:isTracked"
  886. },
  887. {
  888. "command": "gitlens.diffWithNext",
  889. "when": "gitlens:isTracked"
  890. },
  891. {
  892. "command": "gitlens.diffWithPrevious",
  893. "when": "gitlens:isTracked"
  894. },
  895. {
  896. "command": "gitlens.diffLineWithPrevious",
  897. "when": "gitlens:isBlameable"
  898. },
  899. {
  900. "command": "gitlens.diffWithWorking",
  901. "when": "gitlens:isTracked"
  902. },
  903. {
  904. "command": "gitlens.diffLineWithWorking",
  905. "when": "gitlens:isBlameable"
  906. },
  907. {
  908. "command": "gitlens.showFileBlame",
  909. "when": "gitlens:isBlameable"
  910. },
  911. {
  912. "command": "gitlens.showLineBlame",
  913. "when": "gitlens:isBlameable"
  914. },
  915. {
  916. "command": "gitlens.toggleFileBlame",
  917. "when": "gitlens:isBlameable"
  918. },
  919. {
  920. "command": "gitlens.toggleLineBlame",
  921. "when": "gitlens:isBlameable"
  922. },
  923. {
  924. "command": "gitlens.toggleCodeLens",
  925. "when": "gitlens:isTracked && gitlens:canToggleCodeLens"
  926. },
  927. {
  928. "command": "gitlens.showBlameHistory",
  929. "when": "gitlens:isBlameable"
  930. },
  931. {
  932. "command": "gitlens.showFileHistory",
  933. "when": "gitlens:isTracked"
  934. },
  935. {
  936. "command": "gitlens.showLastQuickPick",
  937. "when": "gitlens:enabled"
  938. },
  939. {
  940. "command": "gitlens.showQuickCommitDetails",
  941. "when": "gitlens:isBlameable"
  942. },
  943. {
  944. "command": "gitlens.showQuickCommitFileDetails",
  945. "when": "gitlens:isBlameable"
  946. },
  947. {
  948. "command": "gitlens.showQuickFileHistory",
  949. "when": "gitlens:isTracked"
  950. },
  951. {
  952. "command": "gitlens.showQuickBranchHistory",
  953. "when": "gitlens:enabled"
  954. },
  955. {
  956. "command": "gitlens.showQuickRepoHistory",
  957. "when": "gitlens:enabled"
  958. },
  959. {
  960. "command": "gitlens.showQuickRepoStatus",
  961. "when": "gitlens:enabled"
  962. },
  963. {
  964. "command": "gitlens.showQuickStashList",
  965. "when": "gitlens:enabled"
  966. },
  967. {
  968. "command": "gitlens.copyShaToClipboard",
  969. "when": "gitlens:isBlameable"
  970. },
  971. {
  972. "command": "gitlens.copyMessageToClipboard",
  973. "when": "gitlens:isBlameable"
  974. },
  975. {
  976. "command": "gitlens.closeUnchangedFiles",
  977. "when": "gitlens:enabled"
  978. },
  979. {
  980. "command": "gitlens.openChangedFiles",
  981. "when": "gitlens:enabled"
  982. },
  983. {
  984. "command": "gitlens.openBranchInRemote",
  985. "when": "gitlens:hasRemotes"
  986. },
  987. {
  988. "command": "gitlens.openCommitInRemote",
  989. "when": "gitlens:isBlameable && gitlens:hasRemotes"
  990. },
  991. {
  992. "command": "gitlens.openFileInRemote",
  993. "when": "gitlens:isTracked && gitlens:hasRemotes"
  994. },
  995. {
  996. "command": "gitlens.openRepoInRemote",
  997. "when": "gitlens:hasRemotes"
  998. },
  999. {
  1000. "command": "gitlens.stashApply",
  1001. "when": "gitlens:enabled"
  1002. },
  1003. {
  1004. "command": "gitlens.stashSave",
  1005. "when": "gitlens:enabled"
  1006. }
  1007. ],
  1008. "editor/context": [
  1009. {
  1010. "command": "gitlens.openFileInRemote",
  1011. "when": "editorTextFocus && gitlens:isTracked && gitlens:hasRemotes && config.gitlens.advanced.menus.editorContext.remote",
  1012. "group": "navigation@100"
  1013. },
  1014. {
  1015. "command": "gitlens.diffLineWithPrevious",
  1016. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.lineDiff",
  1017. "group": "1_gitlens@1"
  1018. },
  1019. {
  1020. "command": "gitlens.diffLineWithWorking",
  1021. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.lineDiff",
  1022. "group": "1_gitlens@2"
  1023. },
  1024. {
  1025. "command": "gitlens.showQuickCommitFileDetails",
  1026. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.details",
  1027. "group": "1_gitlens@3"
  1028. },
  1029. {
  1030. "command": "gitlens.diffWithPrevious",
  1031. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorContext.fileDiff",
  1032. "group": "1_gitlens_1@1"
  1033. },
  1034. {
  1035. "command": "gitlens.diffWithWorking",
  1036. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorContext.fileDiff",
  1037. "group": "1_gitlens_1@2"
  1038. },
  1039. {
  1040. "command": "gitlens.showQuickFileHistory",
  1041. "when": "gitlens:isTracked && config.gitlens.advanced.menus.editorContext.history",
  1042. "group": "3_gitlens@1"
  1043. },
  1044. {
  1045. "command": "gitlens.toggleFileBlame",
  1046. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.blame",
  1047. "group": "3_gitlens@2"
  1048. },
  1049. {
  1050. "command": "gitlens.copyShaToClipboard",
  1051. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.copy",
  1052. "group": "9_gitlens@1"
  1053. },
  1054. {
  1055. "command": "gitlens.copyMessageToClipboard",
  1056. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.copy",
  1057. "group": "9_gitlens@2"
  1058. }
  1059. ],
  1060. "editor/title": [
  1061. {
  1062. "command": "gitlens.toggleFileBlame",
  1063. "when": "gitlens:isBlameable && config.gitlens.advanced.menus.editorTitle.blame",
  1064. "group": "navigation@100"
  1065. },
  1066. {
  1067. "command": "gitlens.openFileInRemote",
  1068. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.remote",
  1069. "group": "1_gitlens"
  1070. },
  1071. {
  1072. "command": "gitlens.openRepoInRemote",
  1073. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.remote",
  1074. "group": "1_gitlens"
  1075. },
  1076. {
  1077. "command": "gitlens.diffWithPrevious",
  1078. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorTitle.fileDiff",
  1079. "group": "2_gitlens"
  1080. },
  1081. {
  1082. "command": "gitlens.diffWithWorking",
  1083. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorTitle.fileDiff",
  1084. "group": "2_gitlens"
  1085. },
  1086. {
  1087. "command": "gitlens.showQuickFileHistory",
  1088. "when": "editorFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorTitle.history",
  1089. "group": "2_gitlens_1"
  1090. },
  1091. {
  1092. "command": "gitlens.showQuickRepoHistory",
  1093. "when": "!editorFocus && gitlens:enabled && config.gitlens.advanced.menus.editorTitle.history",
  1094. "group": "2_gitlens_1"
  1095. },
  1096. {
  1097. "command": "gitlens.showQuickRepoStatus",
  1098. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitle.status",
  1099. "group": "2_gitlens_1"
  1100. }
  1101. ],
  1102. "editor/title/context": [
  1103. {
  1104. "command": "gitlens.openFileInRemote",
  1105. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.remote",
  1106. "group": "1_gitlens"
  1107. },
  1108. {
  1109. "command": "gitlens.diffWithPrevious",
  1110. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.fileDiff",
  1111. "group": "1_gitlens_1@1"
  1112. },
  1113. {
  1114. "command": "gitlens.diffWithWorking",
  1115. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.fileDiff",
  1116. "group": "1_gitlens_1@2"
  1117. },
  1118. {
  1119. "command": "gitlens.showQuickFileHistory",
  1120. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.history",
  1121. "group": "1_gitlens_2@1"
  1122. },
  1123. {
  1124. "command": "gitlens.toggleFileBlame",
  1125. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.blame",
  1126. "group": "1_gitlens_2@2"
  1127. }
  1128. ],
  1129. "explorer/context": [
  1130. {
  1131. "command": "gitlens.openFileInRemote",
  1132. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.remote",
  1133. "group": "navigation@100"
  1134. },
  1135. {
  1136. "command": "gitlens.diffWithPrevious",
  1137. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.fileDiff",
  1138. "group": "1_gitlens@1"
  1139. },
  1140. {
  1141. "command": "gitlens.diffWithWorking",
  1142. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.fileDiff",
  1143. "group": "1_gitlens@2"
  1144. },
  1145. {
  1146. "command": "gitlens.showQuickFileHistory",
  1147. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.history",
  1148. "group": "1_gitlens_1@1"
  1149. }
  1150. ]
  1151. },
  1152. "keybindings": [
  1153. {
  1154. "command": "gitlens.key.left",
  1155. "key": "alt+left",
  1156. "when": "gitlens:key:left"
  1157. },
  1158. {
  1159. "command": "gitlens.key.right",
  1160. "key": "alt+right",
  1161. "when": "gitlens:key:right"
  1162. },
  1163. {
  1164. "command": "gitlens.key.,",
  1165. "key": "alt+,",
  1166. "when": "gitlens:key:,"
  1167. },
  1168. {
  1169. "command": "gitlens.key..",
  1170. "key": "alt+.",
  1171. "when": "gitlens:key:."
  1172. },
  1173. {
  1174. "command": "gitlens.toggleFileBlame",
  1175. "key": "alt+b",
  1176. "mac": "alt+b",
  1177. "when": "editorTextFocus && gitlens:isTracked"
  1178. },
  1179. {
  1180. "command": "gitlens.toggleCodeLens",
  1181. "key": "shift+alt+b",
  1182. "mac": "shift+alt+b",
  1183. "when": "editorTextFocus && gitlens:isTracked && gitlens:canToggleCodeLens"
  1184. },
  1185. {
  1186. "command": "gitlens.showLastQuickPick",
  1187. "key": "alt+-",
  1188. "mac": "alt+-",
  1189. "when": "gitlens:enabled"
  1190. },
  1191. {
  1192. "command": "gitlens.showCommitSearch",
  1193. "key": "alt+/",
  1194. "mac": "alt+/",
  1195. "when": "gitlens:enabled"
  1196. },
  1197. {
  1198. "command": "gitlens.showQuickFileHistory",
  1199. "key": "alt+h",
  1200. "mac": "alt+h",
  1201. "when": "gitlens:enabled"
  1202. },
  1203. {
  1204. "command": "gitlens.showQuickRepoHistory",
  1205. "key": "shift+alt+h",
  1206. "mac": "shift+alt+h",
  1207. "when": "gitlens:enabled"
  1208. },
  1209. {
  1210. "command": "gitlens.showQuickRepoStatus",
  1211. "key": "alt+s",
  1212. "mac": "alt+s",
  1213. "when": "gitlens:enabled"
  1214. },
  1215. {
  1216. "command": "gitlens.showQuickCommitFileDetails",
  1217. "key": "alt+c",
  1218. "mac": "alt+c",
  1219. "when": "editorTextFocus && gitlens:enabled"
  1220. },
  1221. {
  1222. "command": "gitlens.diffWithNext",
  1223. "key": "alt+.",
  1224. "mac": "alt+.",
  1225. "when": "editorTextFocus && gitlens:isTracked"
  1226. },
  1227. {
  1228. "command": "gitlens.diffLineWithPrevious",
  1229. "key": "shift+alt+,",
  1230. "mac": "shift+alt+,",
  1231. "when": "editorTextFocus && gitlens:isTracked"
  1232. },
  1233. {
  1234. "command": "gitlens.diffWithPrevious",
  1235. "key": "alt+,",
  1236. "mac": "alt+,",
  1237. "when": "editorTextFocus && gitlens:isTracked"
  1238. },
  1239. {
  1240. "command": "gitlens.diffLineWithWorking",
  1241. "key": "alt+w",
  1242. "mac": "alt+w",
  1243. "when": "editorTextFocus && gitlens:isTracked"
  1244. },
  1245. {
  1246. "command": "gitlens.diffWithWorking",
  1247. "key": "shift+alt+w",
  1248. "mac": "shift+alt+w",
  1249. "when": "editorTextFocus && gitlens:isTracked"
  1250. }
  1251. ]
  1252. },
  1253. "activationEvents": [
  1254. "*"
  1255. ],
  1256. "scripts": {
  1257. "clean": "git clean -xdf",
  1258. "compile": "tslint --project tslint.json && tsc -p ./",
  1259. "watch": "tsc -watch -p ./",
  1260. "lint": "tslint --project tslint.json",
  1261. "pack": "git clean -xdf && vsce package",
  1262. "postinstall": "node ./node_modules/vscode/bin/install",
  1263. "pub": "git clean -xdf && vsce publish",
  1264. "reset": "git clean -xdf && npm install",
  1265. "vscode:prepublish": "npm install --no-save && npm run compile"
  1266. },
  1267. "dependencies": {
  1268. "applicationinsights": "0.20.1",
  1269. "copy-paste": "1.3.0",
  1270. "iconv-lite": "0.4.17",
  1271. "ignore": "3.3.3",
  1272. "lodash.debounce": "4.0.8",
  1273. "lodash.escaperegexp": "4.1.2",
  1274. "lodash.isequal": "4.5.0",
  1275. "lodash.once": "4.1.1",
  1276. "moment": "2.18.1",
  1277. "spawn-rx": "2.0.11",
  1278. "tmp": "0.0.31"
  1279. },
  1280. "devDependencies": {
  1281. "@types/copy-paste": "1.1.30",
  1282. "@types/iconv-lite": "0.0.1",
  1283. "@types/mocha": "2.2.41",
  1284. "@types/node": "7.0.28",
  1285. "@types/tmp": "0.0.33",
  1286. "mocha": "3.4.2",
  1287. "tslint": "5.4.3",
  1288. "typescript": "2.3.4",
  1289. "vscode": "1.1.0"
  1290. }
  1291. }