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.

84 lines
2.4 KiB

  1. {
  2. "name": "@testing-library/dom",
  3. "version": "7.30.3",
  4. "description": "Simple and complete DOM testing utilities that encourage good testing practices.",
  5. "main": "dist/index.js",
  6. "types": "types/index.d.ts",
  7. "module": "dist/@testing-library/dom.esm.js",
  8. "umd:main": "dist/@testing-library/dom.umd.js",
  9. "source": "src/index.js",
  10. "keywords": [
  11. "testing",
  12. "ui",
  13. "dom",
  14. "jsdom",
  15. "unit",
  16. "integration",
  17. "functional",
  18. "end-to-end",
  19. "e2e"
  20. ],
  21. "author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)",
  22. "license": "MIT",
  23. "engines": {
  24. "node": ">=10"
  25. },
  26. "scripts": {
  27. "build": "kcd-scripts build --no-ts-defs --ignore \"**/__tests__/**,**/__node_tests__/**,**/__mocks__/**\" && kcd-scripts build --no-ts-defs --bundle --no-clean",
  28. "lint": "kcd-scripts lint",
  29. "setup": "npm install && npm run validate -s",
  30. "test": "kcd-scripts test",
  31. "test:debug": "node --inspect-brk ./node_modules/.bin/jest --watch --runInBand",
  32. "test:update": "npm test -- --updateSnapshot --coverage",
  33. "validate": "kcd-scripts validate",
  34. "typecheck": "kcd-scripts typecheck --build types"
  35. },
  36. "files": [
  37. "dist",
  38. "types/*.d.ts"
  39. ],
  40. "dependencies": {
  41. "@babel/code-frame": "^7.10.4",
  42. "@babel/runtime": "^7.12.5",
  43. "@types/aria-query": "^4.2.0",
  44. "aria-query": "^4.2.2",
  45. "chalk": "^4.1.0",
  46. "dom-accessibility-api": "^0.5.4",
  47. "lz-string": "^1.4.4",
  48. "pretty-format": "^26.6.2"
  49. },
  50. "devDependencies": {
  51. "@testing-library/jest-dom": "^5.11.6",
  52. "jest-in-case": "^1.0.2",
  53. "jest-serializer-ansi": "^1.0.3",
  54. "jest-watch-select-projects": "^2.0.0",
  55. "jsdom": "^16.4.0",
  56. "kcd-scripts": "^7.5.3",
  57. "typescript": "^4.1.2"
  58. },
  59. "eslintConfig": {
  60. "extends": [
  61. "./node_modules/kcd-scripts/eslint.js",
  62. "plugin:import/typescript"
  63. ],
  64. "rules": {
  65. "import/prefer-default-export": "off",
  66. "import/no-unassigned-import": "off",
  67. "import/no-useless-path-segments": "off",
  68. "no-console": "off"
  69. }
  70. },
  71. "eslintIgnore": [
  72. "node_modules",
  73. "coverage",
  74. "dist"
  75. ],
  76. "repository": {
  77. "type": "git",
  78. "url": "https://github.com/testing-library/dom-testing-library"
  79. },
  80. "bugs": {
  81. "url": "https://github.com/testing-library/dom-testing-library/issues"
  82. },
  83. "homepage": "https://github.com/testing-library/dom-testing-library#readme"
  84. }