package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "popper.js",
  3. "version": "1.16.1",
  4. "description": "A kickass library to manage your poppers",
  5. "homepage": "https://popper.js.org",
  6. "repository": {
  7. "type": "git",
  8. "url": "git+https://github.com/FezVrasta/popper.js.git"
  9. },
  10. "author": "Federico Zivolo <federico.zivolo@gmail.com>",
  11. "funding": {
  12. "type": "opencollective",
  13. "url": "https://opencollective.com/popperjs"
  14. },
  15. "contributors": [
  16. "Contributors (https://github.com/FezVrasta/popper.js/graphs/contributors)"
  17. ],
  18. "license": "MIT",
  19. "bugs": {
  20. "url": "https://github.com/FezVrasta/popper.js/issues"
  21. },
  22. "keywords": [
  23. "popperjs",
  24. "component",
  25. "drop",
  26. "tooltip",
  27. "popover",
  28. "position",
  29. "attached"
  30. ],
  31. "main": "dist/umd/popper.js",
  32. "module": "dist/esm/popper.js",
  33. "unpkg": "dist/umd/popper.min.js",
  34. "types": "index.d.ts",
  35. "sideEffects": false,
  36. "scripts": {
  37. "prepare": "yarn build",
  38. "postpublish": "nuget-publish && ./bower-publish.sh",
  39. "prebuild": "yarn lint",
  40. "pretest": "yarn lint",
  41. "build": "node bundle.js && cp index.js.flow dist/umd/popper.js.flow",
  42. "lint": "eslint .",
  43. "test": "popper-karma",
  44. "posttest": "tsc --project tests/types/tsconfig.json",
  45. "test:dev": "BROWSERS=Chrome NODE_ENV=development yarn test",
  46. "coverage": "COVERAGE=true yarn test"
  47. },
  48. "devDependencies": {
  49. "@popperjs/bundle": "^1.0.2",
  50. "@popperjs/eslint-config-popper": "^1.0.0",
  51. "@popperjs/test": "^1.0.0",
  52. "@popperjs/test-utils": "^1.0.0",
  53. "eslint": "^4.1.1",
  54. "nuget-publish": "^1.0.3",
  55. "typescript": "^2.7.1"
  56. },
  57. "resolutions": {
  58. "micromatch": "^3.0.3"
  59. }
  60. }