package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "handlebars",
  3. "barename": "handlebars",
  4. "version": "4.0.12",
  5. "description": "Handlebars provides the power necessary to let you build semantic templates effectively with no frustration",
  6. "homepage": "http://www.handlebarsjs.com/",
  7. "keywords": [
  8. "handlebars",
  9. "mustache",
  10. "template",
  11. "html"
  12. ],
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/wycats/handlebars.js.git"
  16. },
  17. "author": "Yehuda Katz",
  18. "license": "MIT",
  19. "readmeFilename": "README.md",
  20. "engines": {
  21. "node": ">=0.4.7"
  22. },
  23. "dependencies": {
  24. "async": "^2.5.0",
  25. "optimist": "^0.6.1",
  26. "source-map": "^0.6.1"
  27. },
  28. "optionalDependencies": {
  29. "uglify-js": "^3.1.4"
  30. },
  31. "devDependencies": {
  32. "aws-sdk": "^2.1.49",
  33. "babel-loader": "^5.0.0",
  34. "babel-runtime": "^5.1.10",
  35. "benchmark": "~1.0",
  36. "dustjs-linkedin": "^2.0.2",
  37. "eco": "~1.1.0-rc-3",
  38. "grunt": "^1.0.3",
  39. "grunt-babel": "^5.0.0",
  40. "grunt-cli": "^1",
  41. "grunt-contrib-clean": "^1",
  42. "grunt-contrib-concat": "^1",
  43. "grunt-contrib-connect": "^1",
  44. "grunt-contrib-copy": "^1",
  45. "grunt-contrib-requirejs": "^1",
  46. "grunt-contrib-uglify": "^1",
  47. "grunt-contrib-watch": "^1.1.0",
  48. "grunt-eslint": "^20.1.0",
  49. "grunt-saucelabs": "8.x",
  50. "grunt-webpack": "^1.0.8",
  51. "istanbul": "^0.3.0",
  52. "jison": "~0.3.0",
  53. "mocha": "^5",
  54. "mock-stdin": "^0.3.0",
  55. "mustache": "^2.1.3",
  56. "semver": "^5.0.1",
  57. "underscore": "^1.5.1",
  58. "webpack": "^1.12.6",
  59. "webpack-dev-server": "^1.12.1"
  60. },
  61. "main": "lib/index.js",
  62. "bin": {
  63. "handlebars": "bin/handlebars"
  64. },
  65. "scripts": {
  66. "test": "grunt"
  67. },
  68. "jspm": {
  69. "main": "handlebars",
  70. "directories": {
  71. "lib": "dist/amd"
  72. },
  73. "buildConfig": {
  74. "minify": true
  75. }
  76. },
  77. "files": [
  78. "bin",
  79. "dist/*.js",
  80. "dist/amd/**/*.js",
  81. "dist/cjs/**/*.js",
  82. "lib",
  83. "print-script",
  84. "release-notes.md",
  85. "runtime.js"
  86. ]
  87. }