package.json 693 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "strip-indent",
  3. "version": "3.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": ">=8"
  14. },
  15. "scripts": {
  16. "test": "xo && ava && tsd"
  17. },
  18. "files": [
  19. "index.js",
  20. "index.d.ts"
  21. ],
  22. "keywords": [
  23. "strip",
  24. "indent",
  25. "indentation",
  26. "normalize",
  27. "remove",
  28. "delete",
  29. "whitespace",
  30. "space",
  31. "tab",
  32. "string"
  33. ],
  34. "dependencies": {
  35. "min-indent": "^1.0.0"
  36. },
  37. "devDependencies": {
  38. "ava": "^1.4.1",
  39. "tsd": "^0.7.2",
  40. "xo": "^0.24.0"
  41. }
  42. }