Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

57 строки
1.5KB

  1. {
  2. "name": "mustache",
  3. "version": "2.2.0",
  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": "1.7.3",
  45. "mocha": "^2.1.0",
  46. "zuul": "^3.7.2"
  47. },
  48. "spm": {
  49. "main": "mustache.js",
  50. "ignore": [
  51. "test",
  52. "wrappers"
  53. ]
  54. },
  55. "license": "MIT"
  56. }