package.json 622 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "prepend-http",
  3. "version": "2.0.0",
  4. "description": "Prepend `http://` to humanized URLs like todomvc.com and localhost",
  5. "license": "MIT",
  6. "repository": "sindresorhus/prepend-http",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=4"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "prepend",
  23. "protocol",
  24. "scheme",
  25. "url",
  26. "uri",
  27. "http",
  28. "https",
  29. "humanized"
  30. ],
  31. "devDependencies": {
  32. "ava": "*",
  33. "xo": "*"
  34. }
  35. }