Convert a DOM DocumentType into a string, e.g. "<!DOCTYPE html>"

doctype-to-string/ package.json
40 lines
862 B

  1. {
  2. "name": "doctype-to-string",
  3. "version": "0.1.3",
  4. "description": "Convert a DOM DocumentType into a string, e.g. \"<!DOCTYPE html>\"",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://code.treora.com/gerben/doctype-to-string"
  8. },
  9. "main": "lib",
  10. "scripts": {
  11. "build": "babel -d lib src",
  12. "postpublish": "publish-to-git --force && publish-to-git --force --tag latest",
  13. "prepublish": "npm run build",
  14. "test": "ava"
  15. },
  16. "author": "Gerben <gerben@treora.com>",
  17. "license": "CC0-1.0",
  18. "files": [
  19. "lib"
  20. ],
  21. "devDependencies": {
  22. "ava": "^1.4.1",
  23. "babel-cli": "^6.26.0",
  24. "babel-preset-env": "^1.7.0",
  25. "babel-register": "^6.26.0",
  26. "publish-to-git": "^1.1.7",
  27. "window": "^4.2.6"
  28. },
  29. "babel": {
  30. "presets": [
  31. "env"
  32. ]
  33. },
  34. "ava": {
  35. "require": [
  36. "babel-register"
  37. ]
  38. }
  39. }