package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "jest",
  3. "description": "Delightful JavaScript Testing.",
  4. "version": "27.5.1",
  5. "main": "./build/jest.js",
  6. "types": "./build/jest.d.ts",
  7. "exports": {
  8. ".": {
  9. "types": "./build/jest.d.ts",
  10. "default": "./build/jest.js"
  11. },
  12. "./package.json": "./package.json",
  13. "./bin/jest": "./bin/jest.js"
  14. },
  15. "dependencies": {
  16. "@jest/core": "^27.5.1",
  17. "import-local": "^3.0.2",
  18. "jest-cli": "^27.5.1"
  19. },
  20. "peerDependencies": {
  21. "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
  22. },
  23. "peerDependenciesMeta": {
  24. "node-notifier": {
  25. "optional": true
  26. }
  27. },
  28. "bin": "./bin/jest.js",
  29. "engines": {
  30. "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
  31. },
  32. "repository": {
  33. "type": "git",
  34. "url": "https://github.com/facebook/jest"
  35. },
  36. "homepage": "https://jestjs.io/",
  37. "license": "MIT",
  38. "keywords": [
  39. "ava",
  40. "babel",
  41. "coverage",
  42. "easy",
  43. "expect",
  44. "facebook",
  45. "immersive",
  46. "instant",
  47. "jasmine",
  48. "jest",
  49. "jsdom",
  50. "mocha",
  51. "mocking",
  52. "painless",
  53. "qunit",
  54. "runner",
  55. "sandboxed",
  56. "snapshot",
  57. "tap",
  58. "tape",
  59. "test",
  60. "testing",
  61. "typescript",
  62. "watch"
  63. ],
  64. "publishConfig": {
  65. "access": "public"
  66. },
  67. "gitHead": "67c1aa20c5fec31366d733e901fee2b981cb1850"
  68. }