package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "preserve",
  3. "description": "Temporarily substitute tokens in the given `string` with placeholders, then put them back after transforming the string.",
  4. "version": "0.2.0",
  5. "homepage": "https://github.com/jonschlinkert/preserve",
  6. "author": {
  7. "name": "Jon Schlinkert",
  8. "url": "https://github.com/jonschlinkert"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/jonschlinkert/preserve.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/preserve/issues"
  16. },
  17. "license": {
  18. "type": "MIT",
  19. "url": "https://github.com/jonschlinkert/preserve/blob/master/LICENSE-MIT"
  20. },
  21. "main": "index.js",
  22. "engines": {
  23. "node": ">=0.10.0"
  24. },
  25. "scripts": {
  26. "test": "mocha -R spec"
  27. },
  28. "devDependencies": {
  29. "benchmarked": "^0.1.3",
  30. "chalk": "^0.5.1",
  31. "js-beautify": "^1.5.4",
  32. "mocha": "*",
  33. "should": "*"
  34. },
  35. "keywords": [
  36. "escape",
  37. "format",
  38. "placeholder",
  39. "placeholders",
  40. "prettify",
  41. "regex",
  42. "replace",
  43. "template",
  44. "templates",
  45. "token",
  46. "tokens"
  47. ]
  48. }