package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. {
  2. "name": "typescript",
  3. "author": "Microsoft Corp.",
  4. "homepage": "https://www.typescriptlang.org/",
  5. "version": "4.9.5",
  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. "files": [
  32. "bin",
  33. "lib",
  34. "!lib/enu",
  35. "LICENSE.txt",
  36. "README.md",
  37. "SECURITY.md",
  38. "ThirdPartyNoticeText.txt",
  39. "!**/.gitattributes"
  40. ],
  41. "devDependencies": {
  42. "@octokit/rest": "latest",
  43. "@types/chai": "latest",
  44. "@types/fancy-log": "^2.0.0",
  45. "@types/fs-extra": "^9.0.13",
  46. "@types/glob": "latest",
  47. "@types/gulp": "^4.0.9",
  48. "@types/gulp-concat": "latest",
  49. "@types/gulp-newer": "latest",
  50. "@types/gulp-rename": "latest",
  51. "@types/gulp-sourcemaps": "latest",
  52. "@types/merge2": "latest",
  53. "@types/microsoft__typescript-etw": "latest",
  54. "@types/minimist": "latest",
  55. "@types/mkdirp": "latest",
  56. "@types/mocha": "latest",
  57. "@types/ms": "latest",
  58. "@types/node": "latest",
  59. "@types/source-map-support": "latest",
  60. "@types/which": "^2.0.1",
  61. "@types/xml2js": "^0.4.11",
  62. "@typescript-eslint/eslint-plugin": "^5.33.1",
  63. "@typescript-eslint/parser": "^5.33.1",
  64. "@typescript-eslint/utils": "^5.33.1",
  65. "azure-devops-node-api": "^11.2.0",
  66. "chai": "latest",
  67. "chalk": "^4.1.2",
  68. "del": "^6.1.1",
  69. "diff": "^5.1.0",
  70. "eslint": "^8.22.0",
  71. "eslint-formatter-autolinkable-stylish": "^1.2.0",
  72. "eslint-plugin-import": "^2.26.0",
  73. "eslint-plugin-jsdoc": "^39.3.6",
  74. "eslint-plugin-local": "^1.0.0",
  75. "eslint-plugin-no-null": "^1.0.2",
  76. "fancy-log": "latest",
  77. "fs-extra": "^9.1.0",
  78. "glob": "latest",
  79. "gulp": "^4.0.2",
  80. "gulp-concat": "latest",
  81. "gulp-insert": "latest",
  82. "gulp-newer": "latest",
  83. "gulp-rename": "latest",
  84. "gulp-sourcemaps": "latest",
  85. "merge2": "latest",
  86. "minimist": "latest",
  87. "mkdirp": "latest",
  88. "mocha": "latest",
  89. "mocha-fivemat-progress-reporter": "latest",
  90. "ms": "^2.1.3",
  91. "node-fetch": "^3.2.10",
  92. "source-map-support": "latest",
  93. "typescript": "^4.8.4",
  94. "vinyl": "latest",
  95. "which": "^2.0.2",
  96. "xml2js": "^0.4.23"
  97. },
  98. "overrides": {
  99. "es5-ext": "0.10.53"
  100. },
  101. "scripts": {
  102. "test": "gulp runtests-parallel --light=false",
  103. "test:eslint-rules": "gulp run-eslint-rules-tests",
  104. "build": "npm run build:compiler && npm run build:tests",
  105. "build:compiler": "gulp local",
  106. "build:tests": "gulp tests",
  107. "start": "node lib/tsc",
  108. "clean": "gulp clean",
  109. "gulp": "gulp",
  110. "lint": "gulp lint",
  111. "setup-hooks": "node scripts/link-hooks.mjs"
  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. }