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.

1300 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": true,
  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. "command": "gitlens.resetSuppressedWarnings",
  878. "title": "Reset Suppressed Warnings",
  879. "category": "GitLens"
  880. }
  881. ],
  882. "menus": {
  883. "commandPalette": [
  884. {
  885. "command": "gitlens.diffDirectory",
  886. "when": "gitlens:enabled"
  887. },
  888. {
  889. "command": "gitlens.diffWithBranch",
  890. "when": "gitlens:isTracked"
  891. },
  892. {
  893. "command": "gitlens.diffWithNext",
  894. "when": "gitlens:isTracked"
  895. },
  896. {
  897. "command": "gitlens.diffWithPrevious",
  898. "when": "gitlens:isTracked"
  899. },
  900. {
  901. "command": "gitlens.diffLineWithPrevious",
  902. "when": "gitlens:isBlameable"
  903. },
  904. {
  905. "command": "gitlens.diffWithWorking",
  906. "when": "gitlens:isTracked"
  907. },
  908. {
  909. "command": "gitlens.diffLineWithWorking",
  910. "when": "gitlens:isBlameable"
  911. },
  912. {
  913. "command": "gitlens.showFileBlame",
  914. "when": "gitlens:isBlameable"
  915. },
  916. {
  917. "command": "gitlens.showLineBlame",
  918. "when": "gitlens:isBlameable"
  919. },
  920. {
  921. "command": "gitlens.toggleFileBlame",
  922. "when": "gitlens:isBlameable"
  923. },
  924. {
  925. "command": "gitlens.toggleLineBlame",
  926. "when": "gitlens:isBlameable"
  927. },
  928. {
  929. "command": "gitlens.toggleCodeLens",
  930. "when": "gitlens:isTracked && gitlens:canToggleCodeLens"
  931. },
  932. {
  933. "command": "gitlens.showBlameHistory",
  934. "when": "gitlens:isBlameable"
  935. },
  936. {
  937. "command": "gitlens.showFileHistory",
  938. "when": "gitlens:isTracked"
  939. },
  940. {
  941. "command": "gitlens.showLastQuickPick",
  942. "when": "gitlens:enabled"
  943. },
  944. {
  945. "command": "gitlens.showQuickCommitDetails",
  946. "when": "gitlens:isBlameable"
  947. },
  948. {
  949. "command": "gitlens.showQuickCommitFileDetails",
  950. "when": "gitlens:isBlameable"
  951. },
  952. {
  953. "command": "gitlens.showQuickFileHistory",
  954. "when": "gitlens:isTracked"
  955. },
  956. {
  957. "command": "gitlens.showQuickBranchHistory",
  958. "when": "gitlens:enabled"
  959. },
  960. {
  961. "command": "gitlens.showQuickRepoHistory",
  962. "when": "gitlens:enabled"
  963. },
  964. {
  965. "command": "gitlens.showQuickRepoStatus",
  966. "when": "gitlens:enabled"
  967. },
  968. {
  969. "command": "gitlens.showQuickStashList",
  970. "when": "gitlens:enabled"
  971. },
  972. {
  973. "command": "gitlens.copyShaToClipboard",
  974. "when": "gitlens:isBlameable"
  975. },
  976. {
  977. "command": "gitlens.copyMessageToClipboard",
  978. "when": "gitlens:isBlameable"
  979. },
  980. {
  981. "command": "gitlens.closeUnchangedFiles",
  982. "when": "gitlens:enabled"
  983. },
  984. {
  985. "command": "gitlens.openChangedFiles",
  986. "when": "gitlens:enabled"
  987. },
  988. {
  989. "command": "gitlens.openBranchInRemote",
  990. "when": "gitlens:hasRemotes"
  991. },
  992. {
  993. "command": "gitlens.openCommitInRemote",
  994. "when": "gitlens:isBlameable && gitlens:hasRemotes"
  995. },
  996. {
  997. "command": "gitlens.openFileInRemote",
  998. "when": "gitlens:isTracked && gitlens:hasRemotes"
  999. },
  1000. {
  1001. "command": "gitlens.openRepoInRemote",
  1002. "when": "gitlens:hasRemotes"
  1003. },
  1004. {
  1005. "command": "gitlens.stashApply",
  1006. "when": "gitlens:enabled"
  1007. },
  1008. {
  1009. "command": "gitlens.stashSave",
  1010. "when": "gitlens:enabled"
  1011. },
  1012. {
  1013. "command": "gitlens.resetSuppressedWarnings",
  1014. "when": "gitlens:enabled"
  1015. }
  1016. ],
  1017. "editor/context": [
  1018. {
  1019. "command": "gitlens.openFileInRemote",
  1020. "when": "editorTextFocus && gitlens:isTracked && gitlens:hasRemotes && config.gitlens.advanced.menus.editorContext.remote",
  1021. "group": "navigation@100"
  1022. },
  1023. {
  1024. "command": "gitlens.diffLineWithPrevious",
  1025. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.lineDiff",
  1026. "group": "1_gitlens@1"
  1027. },
  1028. {
  1029. "command": "gitlens.diffLineWithWorking",
  1030. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.lineDiff",
  1031. "group": "1_gitlens@2"
  1032. },
  1033. {
  1034. "command": "gitlens.showQuickCommitFileDetails",
  1035. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.details",
  1036. "group": "1_gitlens@3"
  1037. },
  1038. {
  1039. "command": "gitlens.diffWithPrevious",
  1040. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorContext.fileDiff",
  1041. "group": "1_gitlens_1@1"
  1042. },
  1043. {
  1044. "command": "gitlens.diffWithWorking",
  1045. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorContext.fileDiff",
  1046. "group": "1_gitlens_1@2"
  1047. },
  1048. {
  1049. "command": "gitlens.showQuickFileHistory",
  1050. "when": "gitlens:isTracked && config.gitlens.advanced.menus.editorContext.history",
  1051. "group": "3_gitlens@1"
  1052. },
  1053. {
  1054. "command": "gitlens.toggleFileBlame",
  1055. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.blame",
  1056. "group": "3_gitlens@2"
  1057. },
  1058. {
  1059. "command": "gitlens.copyShaToClipboard",
  1060. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.copy",
  1061. "group": "9_gitlens@1"
  1062. },
  1063. {
  1064. "command": "gitlens.copyMessageToClipboard",
  1065. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.copy",
  1066. "group": "9_gitlens@2"
  1067. }
  1068. ],
  1069. "editor/title": [
  1070. {
  1071. "command": "gitlens.toggleFileBlame",
  1072. "when": "gitlens:isBlameable && config.gitlens.advanced.menus.editorTitle.blame",
  1073. "group": "navigation@100"
  1074. },
  1075. {
  1076. "command": "gitlens.openFileInRemote",
  1077. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.remote",
  1078. "group": "1_gitlens"
  1079. },
  1080. {
  1081. "command": "gitlens.openRepoInRemote",
  1082. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.remote",
  1083. "group": "1_gitlens"
  1084. },
  1085. {
  1086. "command": "gitlens.diffWithPrevious",
  1087. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorTitle.fileDiff",
  1088. "group": "2_gitlens"
  1089. },
  1090. {
  1091. "command": "gitlens.diffWithWorking",
  1092. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorTitle.fileDiff",
  1093. "group": "2_gitlens"
  1094. },
  1095. {
  1096. "command": "gitlens.showQuickFileHistory",
  1097. "when": "editorFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorTitle.history",
  1098. "group": "2_gitlens_1"
  1099. },
  1100. {
  1101. "command": "gitlens.showQuickRepoHistory",
  1102. "when": "!editorFocus && gitlens:enabled && config.gitlens.advanced.menus.editorTitle.history",
  1103. "group": "2_gitlens_1"
  1104. },
  1105. {
  1106. "command": "gitlens.showQuickRepoStatus",
  1107. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitle.status",
  1108. "group": "2_gitlens_1"
  1109. }
  1110. ],
  1111. "editor/title/context": [
  1112. {
  1113. "command": "gitlens.openFileInRemote",
  1114. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.remote",
  1115. "group": "1_gitlens"
  1116. },
  1117. {
  1118. "command": "gitlens.diffWithPrevious",
  1119. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.fileDiff",
  1120. "group": "1_gitlens_1@1"
  1121. },
  1122. {
  1123. "command": "gitlens.diffWithWorking",
  1124. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.fileDiff",
  1125. "group": "1_gitlens_1@2"
  1126. },
  1127. {
  1128. "command": "gitlens.showQuickFileHistory",
  1129. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.history",
  1130. "group": "1_gitlens_2@1"
  1131. },
  1132. {
  1133. "command": "gitlens.toggleFileBlame",
  1134. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.blame",
  1135. "group": "1_gitlens_2@2"
  1136. }
  1137. ],
  1138. "explorer/context": [
  1139. {
  1140. "command": "gitlens.openFileInRemote",
  1141. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.remote",
  1142. "group": "navigation@100"
  1143. },
  1144. {
  1145. "command": "gitlens.diffWithPrevious",
  1146. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.fileDiff",
  1147. "group": "1_gitlens@1"
  1148. },
  1149. {
  1150. "command": "gitlens.diffWithWorking",
  1151. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.fileDiff",
  1152. "group": "1_gitlens@2"
  1153. },
  1154. {
  1155. "command": "gitlens.showQuickFileHistory",
  1156. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.history",
  1157. "group": "1_gitlens_1@1"
  1158. }
  1159. ]
  1160. },
  1161. "keybindings": [
  1162. {
  1163. "command": "gitlens.key.left",
  1164. "key": "alt+left",
  1165. "when": "gitlens:key:left"
  1166. },
  1167. {
  1168. "command": "gitlens.key.right",
  1169. "key": "alt+right",
  1170. "when": "gitlens:key:right"
  1171. },
  1172. {
  1173. "command": "gitlens.key.,",
  1174. "key": "alt+,",
  1175. "when": "gitlens:key:,"
  1176. },
  1177. {
  1178. "command": "gitlens.key..",
  1179. "key": "alt+.",
  1180. "when": "gitlens:key:."
  1181. },
  1182. {
  1183. "command": "gitlens.toggleFileBlame",
  1184. "key": "alt+b",
  1185. "mac": "alt+b",
  1186. "when": "editorTextFocus && gitlens:isTracked"
  1187. },
  1188. {
  1189. "command": "gitlens.toggleCodeLens",
  1190. "key": "shift+alt+b",
  1191. "mac": "shift+alt+b",
  1192. "when": "editorTextFocus && gitlens:isTracked && gitlens:canToggleCodeLens"
  1193. },
  1194. {
  1195. "command": "gitlens.showLastQuickPick",
  1196. "key": "alt+-",
  1197. "mac": "alt+-",
  1198. "when": "gitlens:enabled"
  1199. },
  1200. {
  1201. "command": "gitlens.showCommitSearch",
  1202. "key": "alt+/",
  1203. "mac": "alt+/",
  1204. "when": "gitlens:enabled"
  1205. },
  1206. {
  1207. "command": "gitlens.showQuickFileHistory",
  1208. "key": "alt+h",
  1209. "mac": "alt+h",
  1210. "when": "gitlens:enabled"
  1211. },
  1212. {
  1213. "command": "gitlens.showQuickRepoHistory",
  1214. "key": "shift+alt+h",
  1215. "mac": "shift+alt+h",
  1216. "when": "gitlens:enabled"
  1217. },
  1218. {
  1219. "command": "gitlens.showQuickRepoStatus",
  1220. "key": "alt+s",
  1221. "mac": "alt+s",
  1222. "when": "gitlens:enabled"
  1223. },
  1224. {
  1225. "command": "gitlens.showQuickCommitFileDetails",
  1226. "key": "alt+c",
  1227. "mac": "alt+c",
  1228. "when": "editorTextFocus && gitlens:enabled"
  1229. },
  1230. {
  1231. "command": "gitlens.diffWithNext",
  1232. "key": "alt+.",
  1233. "mac": "alt+.",
  1234. "when": "editorTextFocus && gitlens:isTracked"
  1235. },
  1236. {
  1237. "command": "gitlens.diffLineWithPrevious",
  1238. "key": "shift+alt+,",
  1239. "mac": "shift+alt+,",
  1240. "when": "editorTextFocus && gitlens:isTracked"
  1241. },
  1242. {
  1243. "command": "gitlens.diffWithPrevious",
  1244. "key": "alt+,",
  1245. "mac": "alt+,",
  1246. "when": "editorTextFocus && gitlens:isTracked"
  1247. },
  1248. {
  1249. "command": "gitlens.diffLineWithWorking",
  1250. "key": "alt+w",
  1251. "mac": "alt+w",
  1252. "when": "editorTextFocus && gitlens:isTracked"
  1253. },
  1254. {
  1255. "command": "gitlens.diffWithWorking",
  1256. "key": "shift+alt+w",
  1257. "mac": "shift+alt+w",
  1258. "when": "editorTextFocus && gitlens:isTracked"
  1259. }
  1260. ]
  1261. },
  1262. "activationEvents": [
  1263. "*"
  1264. ],
  1265. "scripts": {
  1266. "clean": "git clean -xdf",
  1267. "compile": "tslint --project tslint.json && tsc -p ./",
  1268. "watch": "tsc -watch -p ./",
  1269. "lint": "tslint --project tslint.json",
  1270. "pack": "git clean -xdf && vsce package",
  1271. "postinstall": "node ./node_modules/vscode/bin/install",
  1272. "pub": "git clean -xdf && vsce publish",
  1273. "reset": "git clean -xdf && npm install",
  1274. "vscode:prepublish": "npm install --no-save && npm run compile"
  1275. },
  1276. "dependencies": {
  1277. "applicationinsights": "0.20.1",
  1278. "copy-paste": "1.3.0",
  1279. "iconv-lite": "0.4.17",
  1280. "ignore": "3.3.3",
  1281. "lodash.debounce": "4.0.8",
  1282. "lodash.escaperegexp": "4.1.2",
  1283. "lodash.isequal": "4.5.0",
  1284. "lodash.once": "4.1.1",
  1285. "moment": "2.18.1",
  1286. "spawn-rx": "2.0.11",
  1287. "tmp": "0.0.31"
  1288. },
  1289. "devDependencies": {
  1290. "@types/copy-paste": "1.1.30",
  1291. "@types/iconv-lite": "0.0.1",
  1292. "@types/mocha": "2.2.41",
  1293. "@types/node": "7.0.28",
  1294. "@types/tmp": "0.0.33",
  1295. "mocha": "3.4.2",
  1296. "tslint": "5.4.3",
  1297. "typescript": "2.3.4",
  1298. "vscode": "1.1.0"
  1299. }
  1300. }