package.json 536 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "component-emitter",
  3. "description": "Event emitter",
  4. "version": "1.3.1",
  5. "license": "MIT",
  6. "funding": "https://github.com/sponsors/sindresorhus",
  7. "devDependencies": {
  8. "mocha": "*",
  9. "should": "*"
  10. },
  11. "component": {
  12. "scripts": {
  13. "emitter/index.js": "index.js"
  14. }
  15. },
  16. "main": "index.js",
  17. "repository": {
  18. "type": "git",
  19. "url": "https://github.com/sindresorhus/component-emitter.git"
  20. },
  21. "scripts": {
  22. "test": "make test"
  23. },
  24. "files": [
  25. "index.js",
  26. "LICENSE"
  27. ]
  28. }