package.json 812 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "classlist-polyfill",
  3. "version": "1.2.0",
  4. "description": "Cross-browser JavaScript shim that fully implements element.classList (referenced on MDN)",
  5. "main": "src/index.js",
  6. "directories": {
  7. "test": "tests"
  8. },
  9. "scripts": {
  10. "test": "bash ./script/test"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/yola/classlist-polyfill.git"
  15. },
  16. "keywords": [
  17. "classList",
  18. "polyfill",
  19. "shim",
  20. "cross-browser"
  21. ],
  22. "author": "Eli Grey <me@eligrey.com>",
  23. "contributors": [
  24. "Eli Grey <me@eligrey.com>",
  25. "Yola Engineering <engineers@yola.com> (https://www.yola.com/)"
  26. ],
  27. "license": "Unlicense",
  28. "bugs": {
  29. "url": "https://github.com/eligrey/classList.js/issues"
  30. },
  31. "homepage": "https://github.com/yola/classlist-polyfill"
  32. }