package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "string-template",
  3. "version": "0.2.1",
  4. "description": "A simple string template function based on named or indexed arguments",
  5. "keywords": [
  6. "template",
  7. "string",
  8. "format",
  9. "replace",
  10. "arguments"
  11. ],
  12. "author": "Matt-Esch <matt@mattesch.info>",
  13. "repository": "git://github.com/Matt-Esch/string-template.git",
  14. "main": "index",
  15. "homepage": "https://github.com/Matt-Esch/string-template",
  16. "contributors": [
  17. {
  18. "name": "Matt-Esch"
  19. }
  20. ],
  21. "bugs": {
  22. "url": "https://github.com/Matt-Esch/string-template/issues",
  23. "email": "matt@mattesch.info"
  24. },
  25. "dependencies": {},
  26. "devDependencies": {
  27. "tape": "~1.1.1"
  28. },
  29. "licenses": [
  30. {
  31. "type": "MIT",
  32. "url": "http://github.com/Matt-Esch/string-template/raw/master/LICENSE"
  33. }
  34. ],
  35. "scripts": {
  36. "test": "node ./test/index.js",
  37. "travis-test": "istanbul cover ./test/index.js && ((cat coverage/lcov.info | coveralls) || exit 0)",
  38. "cover": "istanbul cover --report none --print detail ./test/index.js",
  39. "view-cover": "istanbul report html && google-chrome ./coverage/index.html"
  40. },
  41. "testling": {
  42. "files": "test/index.js",
  43. "browsers": [
  44. "ie/8..latest",
  45. "firefox/16..latest",
  46. "firefox/nightly",
  47. "chrome/22..latest",
  48. "chrome/canary",
  49. "opera/12..latest",
  50. "opera/next",
  51. "safari/5.1..latest",
  52. "ipad/6.0..latest",
  53. "iphone/6.0..latest",
  54. "android-browser/4.2..latest"
  55. ]
  56. },
  57. "__npminstall_done": true,
  58. "_from": "string-template@0.2.1",
  59. "_resolved": "https://registry.npmmirror.com/string-template/-/string-template-0.2.1.tgz"
  60. }