10
0

package.json 826 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "is-docker",
  3. "version": "3.0.0",
  4. "description": "Check if the process is running inside a Docker container",
  5. "license": "MIT",
  6. "repository": "sindresorhus/is-docker",
  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": "./index.js",
  15. "bin": "./cli.js",
  16. "engines": {
  17. "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  18. },
  19. "scripts": {
  20. "test": "xo && ava && tsd"
  21. },
  22. "files": [
  23. "index.js",
  24. "index.d.ts",
  25. "cli.js"
  26. ],
  27. "keywords": [
  28. "detect",
  29. "docker",
  30. "dockerized",
  31. "container",
  32. "inside",
  33. "is",
  34. "env",
  35. "environment",
  36. "process"
  37. ],
  38. "devDependencies": {
  39. "ava": "^3.15.0",
  40. "sinon": "^11.1.2",
  41. "tsd": "^0.17.0",
  42. "xo": "^0.44.0"
  43. }
  44. }