package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "name": "@ionic/cli",
  3. "version": "7.2.1",
  4. "description": "A tool for creating and developing Ionic Framework mobile apps.",
  5. "homepage": "https://ionicframework.com",
  6. "author": "Ionic Team <hi@ionic.io> (https://ionicframework.com) ",
  7. "bin": {
  8. "ionic": "./bin/ionic"
  9. },
  10. "engines": {
  11. "node": ">=16.0.0"
  12. },
  13. "main": "./index.js",
  14. "types": "./index.d.ts",
  15. "scripts": {
  16. "clean": "rimraf index.* bootstrap.* constants.* definitions.* guards.* lib commands",
  17. "lint": "true",
  18. "build": "npm run clean && tsc",
  19. "watch": "tsc -w --preserveWatchOutput",
  20. "test": "jest --maxWorkers=4",
  21. "prepublishOnly": "npm run build"
  22. },
  23. "keywords": [
  24. "ionic",
  25. "ionic framework",
  26. "ionicframework",
  27. "mobile",
  28. "app",
  29. "hybrid",
  30. "cordova",
  31. "native",
  32. "phonegap"
  33. ],
  34. "repository": {
  35. "type": "git",
  36. "url": "https://github.com/ionic-team/ionic-cli.git"
  37. },
  38. "bugs": {
  39. "url": "https://github.com/ionic-team/ionic-cli/issues"
  40. },
  41. "license": "MIT",
  42. "dependencies": {
  43. "@ionic/cli-framework": "6.0.1",
  44. "@ionic/cli-framework-output": "2.2.8",
  45. "@ionic/cli-framework-prompts": "2.1.13",
  46. "@ionic/utils-array": "2.1.6",
  47. "@ionic/utils-fs": "3.1.7",
  48. "@ionic/utils-network": "2.1.7",
  49. "@ionic/utils-process": "2.1.12",
  50. "@ionic/utils-stream": "3.1.7",
  51. "@ionic/utils-subprocess": "3.0.1",
  52. "@ionic/utils-terminal": "2.3.5",
  53. "chalk": "^4.0.0",
  54. "debug": "^4.0.0",
  55. "diff": "^4.0.1",
  56. "elementtree": "^0.1.7",
  57. "leek": "0.0.24",
  58. "lodash": "^4.17.5",
  59. "open": "^7.0.4",
  60. "os-name": "^4.0.0",
  61. "proxy-agent": "^6.3.0",
  62. "semver": "^7.1.1",
  63. "split2": "^3.0.0",
  64. "ssh-config": "^1.1.1",
  65. "stream-combiner2": "^1.1.1",
  66. "superagent": "^9.0.2",
  67. "tar": "^6.0.1",
  68. "tslib": "^2.0.1"
  69. },
  70. "devDependencies": {
  71. "@types/debug": "^4.1.1",
  72. "@types/diff": "^4.0.0",
  73. "@types/elementtree": "^0.1.0",
  74. "@types/jest": "^26.0.10",
  75. "@types/lodash": "^4.14.104",
  76. "@types/node": "~16.0.0",
  77. "@types/semver": "^7.1.0",
  78. "@types/split2": "^2.1.6",
  79. "@types/superagent": "4.1.3",
  80. "@types/tar": "^6.1.2",
  81. "jest": "^26.4.2",
  82. "jest-cli": "^26.0.1",
  83. "lint-staged": "^10.0.2",
  84. "rimraf": "^3.0.0",
  85. "source-map": "^0.7.0",
  86. "ts-jest": "~26.3.0",
  87. "typescript": "~4.8.0"
  88. }
  89. }