package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "name": "jest-cli",
  3. "description": "Delightful JavaScript Testing.",
  4. "version": "29.7.0",
  5. "main": "./build/index.js",
  6. "types": "./build/index.d.ts",
  7. "exports": {
  8. ".": {
  9. "types": "./build/index.d.ts",
  10. "default": "./build/index.js"
  11. },
  12. "./package.json": "./package.json",
  13. "./bin/jest": "./bin/jest.js"
  14. },
  15. "dependencies": {
  16. "@jest/core": "^29.7.0",
  17. "@jest/test-result": "^29.7.0",
  18. "@jest/types": "^29.6.3",
  19. "chalk": "^4.0.0",
  20. "create-jest": "^29.7.0",
  21. "exit": "^0.1.2",
  22. "import-local": "^3.0.2",
  23. "jest-config": "^29.7.0",
  24. "jest-util": "^29.7.0",
  25. "jest-validate": "^29.7.0",
  26. "yargs": "^17.3.1"
  27. },
  28. "devDependencies": {
  29. "@tsd/typescript": "^5.0.4",
  30. "@types/exit": "^0.1.30",
  31. "@types/yargs": "^17.0.8",
  32. "tsd-lite": "^0.7.0"
  33. },
  34. "peerDependencies": {
  35. "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
  36. },
  37. "peerDependenciesMeta": {
  38. "node-notifier": {
  39. "optional": true
  40. }
  41. },
  42. "bin": {
  43. "jest": "./bin/jest.js"
  44. },
  45. "engines": {
  46. "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
  47. },
  48. "repository": {
  49. "type": "git",
  50. "url": "https://github.com/jestjs/jest.git",
  51. "directory": "packages/jest-cli"
  52. },
  53. "bugs": {
  54. "url": "https://github.com/jestjs/jest/issues"
  55. },
  56. "homepage": "https://jestjs.io/",
  57. "license": "MIT",
  58. "keywords": [
  59. "ava",
  60. "babel",
  61. "coverage",
  62. "easy",
  63. "expect",
  64. "facebook",
  65. "immersive",
  66. "instant",
  67. "jasmine",
  68. "jest",
  69. "jsdom",
  70. "mocha",
  71. "mocking",
  72. "painless",
  73. "qunit",
  74. "runner",
  75. "sandboxed",
  76. "snapshot",
  77. "tap",
  78. "tape",
  79. "test",
  80. "testing",
  81. "typescript",
  82. "watch"
  83. ],
  84. "publishConfig": {
  85. "access": "public"
  86. },
  87. "gitHead": "4e56991693da7cd4c3730dc3579a1dd1403ee630"
  88. }