package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "is-wsl",
  3. "version": "3.1.1",
  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. "sideEffects": false,
  19. "engines": {
  20. "node": ">=16"
  21. },
  22. "scripts": {
  23. "test": "xo && ava && tsd"
  24. },
  25. "files": [
  26. "index.js",
  27. "index.d.ts"
  28. ],
  29. "keywords": [
  30. "check",
  31. "wsl",
  32. "windows",
  33. "subsystem",
  34. "linux",
  35. "detect",
  36. "bash",
  37. "process",
  38. "console",
  39. "terminal",
  40. "is"
  41. ],
  42. "dependencies": {
  43. "is-inside-container": "^1.0.0"
  44. },
  45. "devDependencies": {
  46. "ava": "^5.3.1",
  47. "esmock": "^2.3.6",
  48. "tsd": "^0.28.1",
  49. "xo": "^0.55.1"
  50. },
  51. "ava": {
  52. "serial": true,
  53. "nodeArguments": [
  54. "--loader=esmock",
  55. "--no-warnings"
  56. ]
  57. }
  58. }