package.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. {
  2. "name": "typescript",
  3. "author": "Microsoft Corp.",
  4. "homepage": "https://www.typescriptlang.org/",
  5. "version": "4.8.4",
  6. "license": "Apache-2.0",
  7. "description": "TypeScript is a language for application scale JavaScript development",
  8. "keywords": [
  9. "TypeScript",
  10. "Microsoft",
  11. "compiler",
  12. "language",
  13. "javascript"
  14. ],
  15. "bugs": {
  16. "url": "https://github.com/Microsoft/TypeScript/issues"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/Microsoft/TypeScript.git"
  21. },
  22. "main": "./lib/typescript.js",
  23. "typings": "./lib/typescript.d.ts",
  24. "bin": {
  25. "tsc": "./bin/tsc",
  26. "tsserver": "./bin/tsserver"
  27. },
  28. "engines": {
  29. "node": ">=4.2.0"
  30. },
  31. "devDependencies": {
  32. "@octokit/rest": "latest",
  33. "@types/chai": "latest",
  34. "@types/convert-source-map": "latest",
  35. "@types/fs-extra": "^9.0.13",
  36. "@types/glob": "latest",
  37. "@types/gulp": "^4.0.9",
  38. "@types/gulp-concat": "latest",
  39. "@types/gulp-newer": "latest",
  40. "@types/gulp-rename": "latest",
  41. "@types/gulp-sourcemaps": "latest",
  42. "@types/merge2": "latest",
  43. "@types/microsoft__typescript-etw": "latest",
  44. "@types/minimatch": "latest",
  45. "@types/minimist": "latest",
  46. "@types/mkdirp": "latest",
  47. "@types/mocha": "latest",
  48. "@types/ms": "latest",
  49. "@types/node": "latest",
  50. "@types/node-fetch": "^2.6.2",
  51. "@types/q": "latest",
  52. "@types/source-map-support": "latest",
  53. "@types/xml2js": "^0.4.11",
  54. "@typescript-eslint/eslint-plugin": "^5.28.0",
  55. "@typescript-eslint/parser": "^5.28.0",
  56. "@typescript-eslint/utils": "^5.28.0",
  57. "async": "latest",
  58. "azure-devops-node-api": "^11.1.1",
  59. "chai": "latest",
  60. "chalk": "^4.1.2",
  61. "convert-source-map": "latest",
  62. "del": "6.1.1",
  63. "diff": "^5.1.0",
  64. "eslint": "8.17.0",
  65. "eslint-formatter-autolinkable-stylish": "1.2.0",
  66. "eslint-plugin-import": "2.26.0",
  67. "eslint-plugin-jsdoc": "39.3.2",
  68. "eslint-plugin-no-null": "1.0.2",
  69. "fancy-log": "latest",
  70. "fs-extra": "^9.1.0",
  71. "glob": "latest",
  72. "gulp": "^4.0.2",
  73. "gulp-concat": "latest",
  74. "gulp-insert": "latest",
  75. "gulp-newer": "latest",
  76. "gulp-rename": "latest",
  77. "gulp-sourcemaps": "latest",
  78. "merge2": "latest",
  79. "minimist": "latest",
  80. "mkdirp": "latest",
  81. "mocha": "latest",
  82. "mocha-fivemat-progress-reporter": "latest",
  83. "ms": "^2.1.3",
  84. "node-fetch": "^2.6.7",
  85. "prex": "^0.4.7",
  86. "q": "latest",
  87. "source-map-support": "latest",
  88. "typescript": "^4.5.5",
  89. "vinyl": "latest",
  90. "vinyl-sourcemaps-apply": "latest",
  91. "xml2js": "^0.4.23"
  92. },
  93. "overrides": {
  94. "es5-ext": "0.10.53"
  95. },
  96. "scripts": {
  97. "prepare": "gulp build-eslint-rules",
  98. "pretest": "gulp tests",
  99. "test": "gulp runtests-parallel --light=false",
  100. "test:eslint-rules": "gulp run-eslint-rules-tests",
  101. "build": "npm run build:compiler && npm run build:tests",
  102. "build:compiler": "gulp local",
  103. "build:tests": "gulp tests",
  104. "start": "node lib/tsc",
  105. "clean": "gulp clean",
  106. "gulp": "gulp",
  107. "lint": "gulp lint",
  108. "lint:ci": "gulp lint --ci",
  109. "lint:compiler": "gulp lint-compiler",
  110. "lint:scripts": "gulp lint-scripts",
  111. "setup-hooks": "node scripts/link-hooks.js"
  112. },
  113. "browser": {
  114. "fs": false,
  115. "os": false,
  116. "path": false,
  117. "crypto": false,
  118. "buffer": false,
  119. "@microsoft/typescript-etw": false,
  120. "source-map-support": false,
  121. "inspector": false
  122. },
  123. "packageManager": "npm@8.15.0",
  124. "volta": {
  125. "node": "14.20.0",
  126. "npm": "8.15.0"
  127. }
  128. }