25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

54 satır
1.4KB

  1. {
  2. "name": "mustache",
  3. "version": "2.0.0",
  4. "description": "Logic-less {{mustache}} templates with JavaScript",
  5. "author": "mustache.js Authors <http://github.com/janl/mustache.js>",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/janl/mustache.js.git"
  9. },
  10. "keywords": [
  11. "mustache",
  12. "template",
  13. "templates",
  14. "ejs"
  15. ],
  16. "main": "./mustache.js",
  17. "bin": {
  18. "mustache": "./bin/mustache"
  19. },
  20. "files": [
  21. "mustache.js",
  22. "mustache.min.js",
  23. "bin",
  24. "wrappers",
  25. "LICENSE"
  26. ],
  27. "volo": {
  28. "url": "https://raw.github.com/janl/mustache.js/{version}/mustache.js"
  29. },
  30. "engines": {
  31. "npm": ">=1.4.0"
  32. },
  33. "scripts": {
  34. "pretest": "eslint mustache.js",
  35. "test": "mocha --reporter spec test/*-test.js",
  36. "test-render": "mocha --reporter spec test/render-test",
  37. "pre-test-browser": "node test/create-browser-suite.js",
  38. "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",
  39. "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"
  40. },
  41. "devDependencies": {
  42. "eslint": "^0.20.0",
  43. "mocha": "~2.1.0",
  44. "zuul": "^2.1.1"
  45. },
  46. "spm": {
  47. "main": "mustache.js",
  48. "ignore": [
  49. "test",
  50. "wrappers"
  51. ]
  52. }
  53. }