package.json 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. {
  2. "name": "typescript",
  3. "author": "Microsoft Corp.",
  4. "homepage": "https://www.typescriptlang.org/",
  5. "version": "4.5.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. "devDependencies": {
  32. "@octokit/rest": "latest",
  33. "@types/browserify": "latest",
  34. "@types/chai": "latest",
  35. "@types/convert-source-map": "latest",
  36. "@types/glob": "latest",
  37. "@types/gulp": "^4.0.9",
  38. "@types/gulp-concat": "latest",
  39. "@types/gulp-newer": "latest",
  40. "@types/gulp-rename": "0.0.33",
  41. "@types/gulp-sourcemaps": "0.0.32",
  42. "@types/jake": "latest",
  43. "@types/merge2": "latest",
  44. "@types/microsoft__typescript-etw": "latest",
  45. "@types/minimatch": "latest",
  46. "@types/minimist": "latest",
  47. "@types/mkdirp": "latest",
  48. "@types/mocha": "latest",
  49. "@types/ms": "latest",
  50. "@types/node": "latest",
  51. "@types/node-fetch": "^2.3.4",
  52. "@types/q": "latest",
  53. "@types/source-map-support": "latest",
  54. "@types/through2": "latest",
  55. "@types/xml2js": "^0.4.0",
  56. "@typescript-eslint/eslint-plugin": "^4.28.0",
  57. "@typescript-eslint/experimental-utils": "^4.28.0",
  58. "@typescript-eslint/parser": "^4.28.0",
  59. "async": "latest",
  60. "azure-devops-node-api": "^11.0.1",
  61. "browser-resolve": "^1.11.2",
  62. "browserify": "latest",
  63. "chai": "latest",
  64. "chalk": "^4.1.2",
  65. "convert-source-map": "latest",
  66. "del": "5.1.0",
  67. "diff": "^4.0.2",
  68. "eslint": "7.12.1",
  69. "eslint-formatter-autolinkable-stylish": "1.1.4",
  70. "eslint-plugin-import": "2.22.1",
  71. "eslint-plugin-jsdoc": "30.7.6",
  72. "eslint-plugin-no-null": "1.0.2",
  73. "fancy-log": "latest",
  74. "fs-extra": "^9.0.0",
  75. "glob": "latest",
  76. "gulp": "^4.0.0",
  77. "gulp-concat": "latest",
  78. "gulp-insert": "latest",
  79. "gulp-newer": "latest",
  80. "gulp-rename": "latest",
  81. "gulp-sourcemaps": "latest",
  82. "merge2": "latest",
  83. "minimist": "latest",
  84. "mkdirp": "latest",
  85. "mocha": "latest",
  86. "mocha-fivemat-progress-reporter": "latest",
  87. "ms": "^2.1.3",
  88. "node-fetch": "^2.6.1",
  89. "plugin-error": "latest",
  90. "pretty-hrtime": "^1.0.3",
  91. "prex": "^0.4.3",
  92. "q": "latest",
  93. "source-map-support": "latest",
  94. "through2": "latest",
  95. "typescript": "^4.2.3",
  96. "vinyl": "latest",
  97. "vinyl-sourcemaps-apply": "latest",
  98. "xml2js": "^0.4.19"
  99. },
  100. "scripts": {
  101. "prepare": "gulp build-eslint-rules",
  102. "pretest": "gulp tests",
  103. "test": "gulp runtests-parallel --light=false",
  104. "test:eslint-rules": "gulp run-eslint-rules-tests",
  105. "build": "npm run build:compiler && npm run build:tests",
  106. "build:compiler": "gulp local",
  107. "build:tests": "gulp tests",
  108. "start": "node lib/tsc",
  109. "clean": "gulp clean",
  110. "gulp": "gulp",
  111. "jake": "gulp",
  112. "lint": "gulp lint",
  113. "lint:ci": "gulp lint --ci",
  114. "lint:compiler": "gulp lint-compiler",
  115. "lint:scripts": "gulp lint-scripts",
  116. "setup-hooks": "node scripts/link-hooks.js"
  117. },
  118. "browser": {
  119. "fs": false,
  120. "os": false,
  121. "path": false,
  122. "crypto": false,
  123. "buffer": false,
  124. "@microsoft/typescript-etw": false,
  125. "source-map-support": false,
  126. "inspector": false
  127. },
  128. "volta": {
  129. "node": "14.15.5"
  130. }
  131. }