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

package.json 567B

123456789101112131415161718192021222324252627
  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. "express": "4.14.0",
  19. "node-minify": "1.3.9",
  20. "nodemailer": "2.4.2",
  21. "printit": "0.1.20"
  22. },
  23. "license": {
  24. "type": "GPL-3.0",
  25. "url": "https://www.gnu.org/licenses/gpl-3.0-standalone.html"
  26. }
  27. }