You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
1.8KB

  1. {
  2. "name": "mustache",
  3. "version": "4.0.1",
  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. "bin/",
  23. "mustache.mjs",
  24. "mustache.min.js",
  25. "wrappers/"
  26. ],
  27. "volo": {
  28. "url": "https://raw.github.com/janl/mustache.js/{version}/mustache.js"
  29. },
  30. "scripts": {
  31. "build": "rollup mustache.mjs --file mustache.js --format umd --name Mustache --banner \"// This file has been generated from mustache.mjs\" && uglifyjs mustache.js > mustache.min.js",
  32. "test": "npm run test-lint && npm run test-unit",
  33. "test-lint": "eslint mustache.mjs bin/mustache test/**/*.js",
  34. "test-unit": "mocha --reporter spec test/*-test.js",
  35. "test-render": "mocha --reporter spec test/render-test",
  36. "pre-test-browser": "node test/create-browser-suite.js",
  37. "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",
  38. "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"
  39. },
  40. "devDependencies": {
  41. "chai": "^3.4.0",
  42. "eslint": "^6.5.1",
  43. "jshint": "^2.9.5",
  44. "mocha": "^3.0.2",
  45. "puppeteer": "^2.0.0",
  46. "rollup": "^1.26.3",
  47. "uglify-js": "^3.4.6",
  48. "zuul": "^3.11.0",
  49. "zuul-ngrok": "nolanlawson/zuul-ngrok#patch-1"
  50. },
  51. "greenkeeper": {
  52. "ignore": [
  53. "eslint"
  54. ]
  55. },
  56. "license": "MIT"
  57. }