package.json 582 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "indent-string",
  3. "version": "4.0.0",
  4. "description": "Indent each line in a string",
  5. "license": "MIT",
  6. "repository": "sindresorhus/indent-string",
  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. "indent",
  24. "string",
  25. "pad",
  26. "align",
  27. "line",
  28. "text",
  29. "each",
  30. "every"
  31. ],
  32. "devDependencies": {
  33. "ava": "^1.4.1",
  34. "tsd": "^0.7.2",
  35. "xo": "^0.24.0"
  36. }
  37. }