package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "handlebars-layouts",
  3. "version": "3.1.4",
  4. "description": "Handlebars helpers which implement layout blocks similar to Jade, Jinja, Nunjucks, Swig, and Twig.",
  5. "keywords": [
  6. "blocks",
  7. "dust",
  8. "express",
  9. "handlebars",
  10. "hbs",
  11. "jade",
  12. "layout",
  13. "mote",
  14. "mustache",
  15. "nunjucks",
  16. "swig",
  17. "twig"
  18. ],
  19. "homepage": "https://github.com/shannonmoeller/handlebars-layouts",
  20. "bugs": "https://github.com/shannonmoeller/handlebars-layouts/issues",
  21. "license": "MIT",
  22. "author": "Shannon Moeller <me@shannonmoeller.com> (http://shannonmoeller.com)",
  23. "main": "index.js",
  24. "repository": {
  25. "type": "git",
  26. "url": "https://github.com/shannonmoeller/handlebars-layouts.git"
  27. },
  28. "scripts": {
  29. "gulp": "gulp",
  30. "prepublish": "gulp build",
  31. "report": "cat ./coverage/lcov.info | coveralls",
  32. "test": "gulp test",
  33. "zuul": "zuul --local -- test/handlebars-layouts.spec.js"
  34. },
  35. "devDependencies": {
  36. "babel-eslint": "^4.1.1",
  37. "browserify": "^10.2.4",
  38. "consolidate": "^0.13.1",
  39. "coveralls": "^2.11.2",
  40. "expect": "^1.6.0",
  41. "express": "^4.12.4",
  42. "gulp": "^3.9.0",
  43. "gulp-eslint": "^0.14.0",
  44. "gulp-istanbul": "^0.10.0",
  45. "gulp-mocha": "^2.1.1",
  46. "gulp-prettify": "^0.3.0",
  47. "handlebars": "~3.0",
  48. "jshint-stylish": "^2.0.0",
  49. "through2": "^2.0.0",
  50. "vinyl-fs": "^1.0.0",
  51. "vinyl-source-stream": "^1.1.0",
  52. "zuul": "^3.0.0"
  53. },
  54. "engines": {
  55. "node": ">= 0.10"
  56. },
  57. "dependencies": {}
  58. }