package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "name": "jest-cli",
  3. "description": "Delightful JavaScript Testing.",
  4. "version": "27.4.7",
  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": "^27.4.7",
  17. "@jest/test-result": "^27.4.6",
  18. "@jest/types": "^27.4.2",
  19. "chalk": "^4.0.0",
  20. "exit": "^0.1.2",
  21. "graceful-fs": "^4.2.4",
  22. "import-local": "^3.0.2",
  23. "jest-config": "^27.4.7",
  24. "jest-util": "^27.4.2",
  25. "jest-validate": "^27.4.6",
  26. "prompts": "^2.0.1",
  27. "yargs": "^16.2.0"
  28. },
  29. "devDependencies": {
  30. "@types/exit": "^0.1.30",
  31. "@types/graceful-fs": "^4.1.3",
  32. "@types/prompts": "^2.0.1",
  33. "@types/yargs": "^16.0.0"
  34. },
  35. "peerDependencies": {
  36. "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
  37. },
  38. "peerDependenciesMeta": {
  39. "node-notifier": {
  40. "optional": true
  41. }
  42. },
  43. "bin": {
  44. "jest": "./bin/jest.js"
  45. },
  46. "engines": {
  47. "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
  48. },
  49. "repository": {
  50. "type": "git",
  51. "url": "https://github.com/facebook/jest",
  52. "directory": "packages/jest-cli"
  53. },
  54. "bugs": {
  55. "url": "https://github.com/facebook/jest/issues"
  56. },
  57. "homepage": "https://jestjs.io/",
  58. "license": "MIT",
  59. "keywords": [
  60. "ava",
  61. "babel",
  62. "coverage",
  63. "easy",
  64. "expect",
  65. "facebook",
  66. "immersive",
  67. "instant",
  68. "jasmine",
  69. "jest",
  70. "jsdom",
  71. "mocha",
  72. "mocking",
  73. "painless",
  74. "qunit",
  75. "runner",
  76. "sandboxed",
  77. "snapshot",
  78. "tap",
  79. "tape",
  80. "test",
  81. "testing",
  82. "typescript",
  83. "watch"
  84. ],
  85. "publishConfig": {
  86. "access": "public"
  87. },
  88. "gitHead": "91b898ce6d1908378346b11f732768bd345f3592"
  89. }