package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "pretty",
  3. "description": "Some tweaks for beautifying HTML with js-beautify according to my preferences.",
  4. "version": "2.0.0",
  5. "homepage": "https://github.com/jonschlinkert/pretty",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/pretty",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/pretty/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "main": "index.js",
  16. "engines": {
  17. "node": ">=0.10.0"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "dependencies": {
  23. "condense-newlines": "^0.2.1",
  24. "extend-shallow": "^2.0.1",
  25. "js-beautify": "^1.6.12"
  26. },
  27. "devDependencies": {
  28. "gulp-format-md": "^0.1.12",
  29. "mocha": "^3.2.0"
  30. },
  31. "keywords": [
  32. "beautify",
  33. "format",
  34. "formatter",
  35. "html",
  36. "js",
  37. "js-beautify",
  38. "prettify",
  39. "pretty"
  40. ],
  41. "verb": {
  42. "toc": false,
  43. "layout": "default",
  44. "tasks": [
  45. "readme"
  46. ],
  47. "plugins": [
  48. "gulp-format-md"
  49. ],
  50. "lint": {
  51. "reflinks": true
  52. }
  53. }
  54. }