package.json 1001 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "is-wsl",
  3. "version": "3.1.0",
  4. "description": "Check if the process is running inside Windows Subsystem for Linux (Bash on Windows)",
  5. "license": "MIT",
  6. "repository": "sindresorhus/is-wsl",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "type": "module",
  14. "exports": {
  15. "types": "./index.d.ts",
  16. "default": "./index.js"
  17. },
  18. "engines": {
  19. "node": ">=16"
  20. },
  21. "scripts": {
  22. "test": "xo && ava && tsd"
  23. },
  24. "files": [
  25. "index.js",
  26. "index.d.ts"
  27. ],
  28. "keywords": [
  29. "check",
  30. "wsl",
  31. "windows",
  32. "subsystem",
  33. "linux",
  34. "detect",
  35. "bash",
  36. "process",
  37. "console",
  38. "terminal",
  39. "is"
  40. ],
  41. "dependencies": {
  42. "is-inside-container": "^1.0.0"
  43. },
  44. "devDependencies": {
  45. "ava": "^5.3.1",
  46. "esmock": "^2.3.6",
  47. "tsd": "^0.28.1",
  48. "xo": "^0.55.1"
  49. },
  50. "ava": {
  51. "serial": true,
  52. "nodeArguments": [
  53. "--loader=esmock",
  54. "--no-warnings"
  55. ]
  56. }
  57. }