package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "canonicalclasscpp",
  3. "displayName": "42 Canonical Class CPP",
  4. "description": "This extension is to automatically create a canonical hpp and cpp file",
  5. "version": "0.1.7",
  6. "publisher": "frfreyCanonicalClassCPP",
  7. "icon": "42.png",
  8. "repository": {
  9. "type": "git",
  10. "url": "https://github.com/Etheram68/Header-Cpp-Class"
  11. },
  12. "bugs": {
  13. "url": "https://github.com/Etheram68/Header-Cpp-Class/issues"
  14. },
  15. "homepage": "https://github.com/Etheram68/Header-Cpp-Class",
  16. "license": "MIT",
  17. "engines": {
  18. "vscode": "^1.47.0"
  19. },
  20. "categories": [
  21. "Other"
  22. ],
  23. "activationEvents": [
  24. "onCommand:canonicalclass.makeclass"
  25. ],
  26. "main": "./out/extension.js",
  27. "contributes": {
  28. "commands": [
  29. {
  30. "command": "canonicalclass.makeclass",
  31. "title": "Make canonical class"
  32. }
  33. ],
  34. "keybindings":[
  35. {
  36. "command": "canonicalclass.makeclass",
  37. "key": "ctrl+alt+c",
  38. "mac": "cmd+alt+c"
  39. }
  40. ]
  41. },
  42. "scripts": {
  43. "vscode:prepublish": "npm run compile",
  44. "compile": "tsc -p ./",
  45. "lint": "eslint src --ext ts",
  46. "watch": "tsc -watch -p ./",
  47. "pretest": "npm run compile && npm run lint",
  48. "test": "node ./out/test/runTest.js"
  49. },
  50. "devDependencies": {
  51. "@types/glob": "^7.1.1",
  52. "@types/mocha": "^7.0.1",
  53. "@types/node": "^12.11.7",
  54. "@types/vscode": "^1.47.0",
  55. "eslint": "^6.8.0",
  56. "@typescript-eslint/parser": "^2.18.0",
  57. "@typescript-eslint/eslint-plugin": "^2.18.0",
  58. "glob": "^7.1.6",
  59. "mocha": "^7.0.1",
  60. "typescript": "^3.7.5",
  61. "vscode-test": "^1.3.0"
  62. }
  63. }