Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

74 строки
2.1 KiB

  1. {
  2. "name": "@googlemaps/js-api-loader",
  3. "type": "commonjs",
  4. "version": "1.16.8",
  5. "description": "Wrapper for the loading of Google Maps JavaScript API script in the browser",
  6. "keywords": [
  7. "google",
  8. "maps"
  9. ],
  10. "homepage": "https://github.com/googlemaps/js-api-loader",
  11. "bugs": {
  12. "url": "https://github.com/googlemaps/js-api-loader/issues"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/googlemaps/js-api-loader.git"
  17. },
  18. "license": "Apache-2.0",
  19. "author": "Justin Poehnelt",
  20. "main": "dist/index.umd.js",
  21. "unpkg": "dist/index.min.js",
  22. "module": "dist/index.mjs",
  23. "types": "dist/index.d.ts",
  24. "files": [
  25. "dist/",
  26. "src/"
  27. ],
  28. "scripts": {
  29. "docs": "typedoc src/index.ts && cp -r dist docs/dist && cp -r examples docs/examples",
  30. "format": "eslint . --fix",
  31. "lint": "eslint .",
  32. "prepare": "rm -rf dist && rollup -c",
  33. "test": "jest src/*",
  34. "test:e2e": "jest e2e/*"
  35. },
  36. "dependencies": {},
  37. "devDependencies": {
  38. "@babel/preset-env": "^7.9.5",
  39. "@babel/runtime-corejs3": "^7.9.2",
  40. "@rollup/plugin-babel": "^6.0.3",
  41. "@rollup/plugin-commonjs": "^25.0.4",
  42. "@rollup/plugin-node-resolve": "^15.2.1",
  43. "@rollup/plugin-terser": "^0.4.3",
  44. "@rollup/plugin-typescript": "^11.1.4",
  45. "@types/google.maps": "^3.53.1",
  46. "@types/jest": "^29.5.5",
  47. "@types/selenium-webdriver": "^4.0.9",
  48. "@typescript-eslint/eslint-plugin": "^6.7.3",
  49. "@typescript-eslint/parser": "^6.7.3",
  50. "core-js": "^3.6.4",
  51. "eslint": "^8.12.0",
  52. "eslint-config-prettier": "^9.0.0",
  53. "eslint-plugin-jest": "^27.4.0",
  54. "eslint-plugin-prettier": "^5.0.0",
  55. "fast-deep-equal": "^3.1.3",
  56. "geckodriver": "^4.2.1",
  57. "jest": "^29.7.0",
  58. "jest-environment-jsdom": "^29.7.0",
  59. "prettier": "^3.0.3",
  60. "rollup": "^4.6.1",
  61. "selenium-webdriver": "^4.0.0-alpha.7",
  62. "ts-jest": "^29.1.1",
  63. "typedoc": "^0.25.1",
  64. "typescript": "^5.2.2"
  65. },
  66. "publishConfig": {
  67. "access": "public",
  68. "registry": "https://wombat-dressing-room.appspot.com"
  69. },
  70. "prettier": {
  71. "trailingComma": "es5"
  72. }
  73. }