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.

82 lines
2.0 KiB

  1. {
  2. "name": "@testing-library/user-event",
  3. "version": "12.8.3",
  4. "description": "Fire events the same way the user does",
  5. "main": "dist/index.js",
  6. "typings": "typings/index.d.ts",
  7. "keywords": [
  8. "react-testing-library",
  9. "dom-testing-library",
  10. "react",
  11. "testing"
  12. ],
  13. "author": "Giorgio Polvara <polvara@gmail.com>",
  14. "license": "MIT",
  15. "engines": {
  16. "node": ">=10",
  17. "npm": ">=6"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "https://github.com/testing-library/user-event"
  22. },
  23. "bugs": {
  24. "url": "https://github.com/testing-library/user-event/issues"
  25. },
  26. "homepage": "https://github.com/testing-library/user-event#readme",
  27. "files": [
  28. "dist",
  29. "typings/index.d.ts"
  30. ],
  31. "scripts": {
  32. "build": "kcd-scripts build",
  33. "lint": "kcd-scripts lint",
  34. "setup": "npm install && npm run validate -s",
  35. "test": "kcd-scripts test",
  36. "test:debug": "kcd-scripts --inspect-brk test --runInBand",
  37. "test:update": "npm test -- --updateSnapshot --coverage",
  38. "validate": "kcd-scripts validate",
  39. "typecheck": "kcd-scripts typecheck --build typings"
  40. },
  41. "dependencies": {
  42. "@babel/runtime": "^7.12.5"
  43. },
  44. "devDependencies": {
  45. "@testing-library/dom": "^7.28.1",
  46. "@testing-library/jest-dom": "^5.11.6",
  47. "@types/estree": "0.0.45",
  48. "is-ci": "^2.0.0",
  49. "jest-serializer-ansi": "^1.0.3",
  50. "kcd-scripts": "^7.5.1",
  51. "typescript": "^4.1.2"
  52. },
  53. "peerDependencies": {
  54. "@testing-library/dom": ">=7.21.4"
  55. },
  56. "eslintConfig": {
  57. "extends": "./node_modules/kcd-scripts/eslint.js",
  58. "rules": {
  59. "jsx-a11y/click-events-have-key-events": "off",
  60. "jsx-a11y/tabindex-no-positive": "off",
  61. "no-func-assign": "off",
  62. "no-return-assign": "off",
  63. "react/prop-types": "off",
  64. "testing-library/no-dom-import": "off"
  65. },
  66. "overrides": [
  67. {
  68. "files": [
  69. "**/__tests__/**"
  70. ],
  71. "rules": {
  72. "no-console": "off"
  73. }
  74. }
  75. ]
  76. },
  77. "eslintIgnore": [
  78. "node_modules",
  79. "coverage",
  80. "dist"
  81. ]
  82. }