package.json 690 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "strip-indent",
  3. "version": "2.0.0",
  4. "description": "Strip leading whitespace from each line in a string",
  5. "license": "MIT",
  6. "repository": "sindresorhus/strip-indent",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=4"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "strip",
  23. "indent",
  24. "indentation",
  25. "normalize",
  26. "remove",
  27. "delete",
  28. "whitespace",
  29. "space",
  30. "tab",
  31. "string",
  32. "str"
  33. ],
  34. "devDependencies": {
  35. "ava": "*",
  36. "xo": "*"
  37. },
  38. "xo": {
  39. "esnext": true
  40. }
  41. }