package.json 744 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "detect-indent",
  3. "version": "4.0.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": ">=0.10.0"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "indent",
  23. "indentation",
  24. "detect",
  25. "infer",
  26. "identify",
  27. "code",
  28. "string",
  29. "text",
  30. "source",
  31. "space",
  32. "tab"
  33. ],
  34. "dependencies": {
  35. "repeating": "^2.0.0"
  36. },
  37. "devDependencies": {
  38. "ava": "*",
  39. "xo": "*"
  40. },
  41. "xo": {
  42. "ignores": [
  43. "fixture/**"
  44. ]
  45. }
  46. }