package.json 674 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "detect-indent",
  3. "version": "6.1.0",
  4. "description": "Detect the indentation of code",
  5. "license": "MIT",
  6. "repository": "sindresorhus/detect-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. "indent",
  24. "indentation",
  25. "detect",
  26. "infer",
  27. "identify",
  28. "code",
  29. "string",
  30. "text",
  31. "source",
  32. "space",
  33. "tab"
  34. ],
  35. "devDependencies": {
  36. "ava": "^1.4.1",
  37. "tsd": "^0.7.2",
  38. "xo": "^0.24.0"
  39. },
  40. "xo": {
  41. "ignores": [
  42. "fixture"
  43. ]
  44. }
  45. }