Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

package.json 748B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "strip-outer",
  3. "version": "1.0.1",
  4. "description": "Strip a substring from the start/end of a string",
  5. "license": "MIT",
  6. "repository": "sindresorhus/strip-outer",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=0.10.0"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "strip",
  23. "trim",
  24. "remove",
  25. "outer",
  26. "str",
  27. "string",
  28. "substring",
  29. "start",
  30. "end",
  31. "wrap",
  32. "leading",
  33. "trailing",
  34. "regex",
  35. "regexp"
  36. ],
  37. "dependencies": {
  38. "escape-string-regexp": "^1.0.2"
  39. },
  40. "devDependencies": {
  41. "ava": "*",
  42. "xo": "*"
  43. }
  44. }