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.

89 lines
2.4 KiB

  1. {
  2. "name": "eslint-plugin-testing-library",
  3. "version": "3.10.2",
  4. "description": "ESLint rules for Testing Library",
  5. "keywords": [
  6. "eslint",
  7. "eslintplugin",
  8. "eslint-plugin"
  9. ],
  10. "author": {
  11. "name": "Mario Beltrán Alarcón",
  12. "email": "belco90@gmail.com",
  13. "url": "https://mario.dev/"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/testing-library/eslint-plugin-testing-library"
  18. },
  19. "homepage": "https://github.com/testing-library/eslint-plugin-testing-library",
  20. "bugs": {
  21. "url": "https://github.com/testing-library/eslint-plugin-testing-library/issues"
  22. },
  23. "release": {
  24. "pkgRoot": "dist",
  25. "branches": [
  26. "+([0-9])?(.{+([0-9]),x}).x",
  27. "main",
  28. "next",
  29. "next-major",
  30. {
  31. "name": "beta",
  32. "prerelease": true
  33. },
  34. {
  35. "name": "alpha",
  36. "prerelease": true
  37. }
  38. ]
  39. },
  40. "main": "index.js",
  41. "scripts": {
  42. "build": "tsc",
  43. "postbuild": "cpy README.md ./dist && cpy package.json ./dist && cpy LICENSE ./dist",
  44. "lint": "eslint . --ext .js,.ts",
  45. "lint:fix": "npm run lint -- --fix",
  46. "format": "prettier --write README.md {lib,docs,tests}/**/*.{js,md}",
  47. "test": "jest",
  48. "test:ci": "jest --ci --coverage",
  49. "test:update": "npm run test -- --u",
  50. "test:watch": "npm run test -- --watch",
  51. "semantic-release": "semantic-release"
  52. },
  53. "dependencies": {
  54. "@typescript-eslint/experimental-utils": "^3.10.1"
  55. },
  56. "devDependencies": {
  57. "@commitlint/cli": "^9.1.2",
  58. "@commitlint/config-conventional": "^9.1.2",
  59. "@types/jest": "^25.2.3",
  60. "@typescript-eslint/eslint-plugin": "^3.10.1",
  61. "@typescript-eslint/parser": "^3.10.1",
  62. "cpy-cli": "^3.1.1",
  63. "eslint": "^7.9.0",
  64. "eslint-config-prettier": "^6.11.0",
  65. "eslint-config-standard": "^14.1.1",
  66. "eslint-plugin-import": "^2.22.0",
  67. "eslint-plugin-jest": "^24.0.2",
  68. "eslint-plugin-jest-formatting": "^2.0.0",
  69. "eslint-plugin-node": "^11.1.0",
  70. "eslint-plugin-prettier": "^3.1.4",
  71. "eslint-plugin-promise": "^4.2.1",
  72. "eslint-plugin-standard": "^4.0.1",
  73. "husky": "^4.3.0",
  74. "jest": "^25.5.4",
  75. "lint-staged": "^9.5.0",
  76. "prettier": "1.19.1",
  77. "semantic-release": "^16.0.4",
  78. "ts-jest": "^25.5.1",
  79. "typescript": "^4.0.3"
  80. },
  81. "peerDependencies": {
  82. "eslint": "^5 || ^6 || ^7"
  83. },
  84. "engines": {
  85. "node": "^10.12.0 || >=12.0.0",
  86. "npm": ">=6"
  87. },
  88. "license": "MIT"
  89. }