package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "mustache",
  3. "version": "2.3.2",
  4. "description": "Logic-less {{mustache}} templates with JavaScript",
  5. "author": "mustache.js Authors <http://github.com/janl/mustache.js>",
  6. "homepage": "https://github.com/janl/mustache.js",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/janl/mustache.js.git"
  10. },
  11. "keywords": [
  12. "mustache",
  13. "template",
  14. "templates",
  15. "ejs"
  16. ],
  17. "main": "./mustache.js",
  18. "bin": {
  19. "mustache": "./bin/mustache"
  20. },
  21. "files": [
  22. "mustache.js",
  23. "mustache.min.js",
  24. "bin",
  25. "wrappers",
  26. "LICENSE"
  27. ],
  28. "volo": {
  29. "url": "https://raw.github.com/janl/mustache.js/{version}/mustache.js"
  30. },
  31. "engines": {
  32. "npm": ">=1.4.0"
  33. },
  34. "scripts": {
  35. "pretest": "eslint mustache.js bin/mustache",
  36. "test": "mocha --reporter spec test/*-test.js",
  37. "test-render": "mocha --reporter spec test/render-test",
  38. "pre-test-browser": "node test/create-browser-suite.js",
  39. "test-browser": "npm run pre-test-browser && zuul -- test/context-test.js test/parse-test.js test/scanner-test.js test/render-test-browser.js",
  40. "test-browser-local": "npm run pre-test-browser && zuul --local 8080 -- test/context-test.js test/scanner-test.js test/parse-test.js test/render-test-browser.js"
  41. },
  42. "devDependencies": {
  43. "chai": "^3.4.0",
  44. "eslint": "^2.5.1",
  45. "jshint": "^2.9.5",
  46. "mocha": "^3.0.2",
  47. "uglify-js": "^3.4.6",
  48. "zuul": "^3.11.0",
  49. "zuul-ngrok": "nolanlawson/zuul-ngrok#patch-1"
  50. },
  51. "spm": {
  52. "main": "mustache.js",
  53. "ignore": [
  54. "test",
  55. "wrappers"
  56. ]
  57. },
  58. "greenkeeper": {
  59. "ignore": [
  60. "eslint"
  61. ]
  62. },
  63. "license": "MIT"
  64. }