package.json 993 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "getos",
  3. "version": "3.1.1",
  4. "description": "Get the OS/Distribution name of the environment you are working on",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "node tests/mocktests.js",
  8. "posttest": "standard",
  9. "integration": "node tests/runTest.js",
  10. "standard-fix": "standard --fix"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/retrohacker/getos.git"
  15. },
  16. "keywords": [
  17. "OS",
  18. "Distribution",
  19. "Platform"
  20. ],
  21. "author": "william.jblankenship@gmail.com",
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/retrohacker/getos/issues"
  25. },
  26. "homepage": "https://github.com/retrohacker/getos",
  27. "devDependencies": {
  28. "cli-color": "1.4.0",
  29. "execSync": "1.0.2",
  30. "standard": "^12.0.1",
  31. "tape": "4.9.1"
  32. },
  33. "dependencies": {
  34. "async": "2.6.1"
  35. },
  36. "contributors": [
  37. {
  38. "name": "Benjamin E. Coe",
  39. "email": "bencoe@gmail.com",
  40. "url": "https://github.com/bcoe"
  41. }
  42. ]
  43. }