web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
1.8 KiB

  1. {
  2. "name": "@testing-library/jest-dom",
  3. "version": "5.11.10",
  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": "^4.2.2",
  37. "chalk": "^3.0.0",
  38. "css": "^3.0.0",
  39. "css.escape": "^1.5.1",
  40. "lodash": "^4.17.15",
  41. "redent": "^3.0.0"
  42. },
  43. "devDependencies": {
  44. "jest-environment-jsdom-sixteen": "^1.0.3",
  45. "jest-watch-select-projects": "^2.0.0",
  46. "jsdom": "^16.2.1",
  47. "kcd-scripts": "^5.6.0",
  48. "pretty-format": "^25.1.0"
  49. },
  50. "eslintConfig": {
  51. "extends": "./node_modules/kcd-scripts/eslint.js",
  52. "rules": {
  53. "babel/no-invalid-this": "off"
  54. },
  55. "overrides": [
  56. {
  57. "files": [
  58. "src/__tests__/*.js"
  59. ],
  60. "rules": {
  61. "max-lines-per-function": "off"
  62. }
  63. }
  64. ]
  65. },
  66. "eslintIgnore": [
  67. "node_modules",
  68. "coverage",
  69. "dist"
  70. ],
  71. "repository": {
  72. "type": "git",
  73. "url": "https://github.com/testing-library/jest-dom"
  74. },
  75. "bugs": {
  76. "url": "https://github.com/testing-library/jest-dom/issues"
  77. },
  78. "homepage": "https://github.com/testing-library/jest-dom#readme"
  79. }