SMAM (short for Send Me A Mail) is a free (as in freedom) contact form embedding software.

package.json 596B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "sendmeamail",
  3. "version": "0.0.1",
  4. "contributors": [
  5. {
  6. "name": "Brendan Abolivier",
  7. "email": "contact@brendanabolivier.com"
  8. }
  9. ],
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/babolivier/smam.git"
  13. },
  14. "scripts": {
  15. "start": "node --use_strict server.js"
  16. },
  17. "dependencies": {
  18. "body-parser": "1.15.2",
  19. "express": "4.14.0",
  20. "node-minify": "1.3.9",
  21. "nodemailer": "2.4.2",
  22. "printit": "0.1.20"
  23. },
  24. "license": {
  25. "type": "GPL-3.0",
  26. "url": "https://www.gnu.org/licenses/gpl-3.0-standalone.html"
  27. }
  28. }