Advertisement
Guest User

Untitled

a guest
Apr 29th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. {
  2. "name": "copy-relative-path",
  3. "displayName": "Copy Relative Path",
  4. "description": "Copy Relative Path from a File",
  5. "version": "0.0.1",
  6. "publisher": "alexdima",
  7. "engines": {
  8. "vscode": "^1.4.0"
  9. },
  10. "categories": [
  11. "Other"
  12. ],
  13. "activationEvents": [
  14. "onCommand:copyRelativePath"
  15. ],
  16. "main": "./extension",
  17. "contributes": {
  18. "commands": [
  19. {
  20. "command": "copyRelativePath",
  21. "title": "Copy Relative Path"
  22. }
  23. ],
  24. "menus": {
  25. "editor/title/context": [
  26. {
  27. "command": "copyRelativePath"
  28. }
  29. ]
  30. }
  31. },
  32. "scripts": {
  33. "postinstall": "node ./node_modules/vscode/bin/install"
  34. },
  35. "devDependencies": {
  36. "vscode": "^0.11.0"
  37. },
  38. "dependencies": {
  39. "copy-paste": "^1.3.0"
  40. },
  41. "__metadata": {
  42. "id": "060828aa-17ab-40d9-9e2d-f8407f5c8d04",
  43. "publisherId": "36c010fa-f346-4325-ab00-0e8c727dbe17",
  44. "publisherDisplayName": "alexdima"
  45. }
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement