package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "@testing-library/jest-dom",
  3. "version": "5.17.0",
  4. "description": "Custom jest matchers to test the state of the DOM",
  5. "main": "dist/index.js",
  6. "engines": {
  7. "node": ">=8",
  8. "npm": ">=6",
  9. "yarn": ">=1"
  10. },
  11. "scripts": {
  12. "build": "kcd-scripts build",
  13. "format": "kcd-scripts format",
  14. "lint": "kcd-scripts lint",
  15. "setup": "npm install && npm run validate -s",
  16. "test": "kcd-scripts test",
  17. "test:update": "npm test -- --updateSnapshot --coverage",
  18. "validate": "kcd-scripts validate"
  19. },
  20. "files": [
  21. "dist",
  22. "extend-expect.js",
  23. "matchers.js"
  24. ],
  25. "keywords": [
  26. "testing",
  27. "dom",
  28. "jest",
  29. "jsdom"
  30. ],
  31. "author": "Ernesto Garcia <gnapse@gmail.com> (http://gnapse.github.io)",
  32. "license": "MIT",
  33. "dependencies": {
  34. "@babel/runtime": "^7.9.2",
  35. "@types/testing-library__jest-dom": "^5.9.1",
  36. "aria-query": "^5.0.0",
  37. "chalk": "^3.0.0",
  38. "@adobe/css-tools": "^4.0.1",
  39. "css.escape": "^1.5.1",
  40. "dom-accessibility-api": "^0.5.6",
  41. "lodash": "^4.17.15",
  42. "redent": "^3.0.0"
  43. },
  44. "devDependencies": {
  45. "jest-environment-jsdom-sixteen": "^1.0.3",
  46. "jest-watch-select-projects": "^2.0.0",
  47. "jsdom": "^16.2.1",
  48. "kcd-scripts": "^11.1.0",
  49. "pretty-format": "^25.1.0"
  50. },
  51. "eslintConfig": {
  52. "extends": "./node_modules/kcd-scripts/eslint.js",
  53. "rules": {
  54. "@babel/no-invalid-this": "off"
  55. },
  56. "overrides": [
  57. {
  58. "files": [
  59. "src/__tests__/*.js"
  60. ],
  61. "rules": {
  62. "max-lines-per-function": "off"
  63. }
  64. }
  65. ]
  66. },
  67. "eslintIgnore": [
  68. "node_modules",
  69. "coverage",
  70. "dist"
  71. ],
  72. "repository": {
  73. "type": "git",
  74. "url": "https://github.com/testing-library/jest-dom"
  75. },
  76. "bugs": {
  77. "url": "https://github.com/testing-library/jest-dom/issues"
  78. },
  79. "homepage": "https://github.com/testing-library/jest-dom#readme"
  80. }