package.json 886 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "dotenv",
  3. "version": "7.0.0",
  4. "description": "Loads environment variables from .env file",
  5. "main": "lib/main.js",
  6. "scripts": {
  7. "flow": "flow",
  8. "lint": "standard",
  9. "postlint": "standard-markdown",
  10. "pretest": "npm run lint",
  11. "test": "tap tests/*.js --100"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/motdotla/dotenv.git"
  16. },
  17. "keywords": [
  18. "dotenv",
  19. "env",
  20. ".env",
  21. "environment",
  22. "variables",
  23. "config",
  24. "settings"
  25. ],
  26. "readmeFilename": "README.md",
  27. "license": "BSD-2-Clause",
  28. "devDependencies": {
  29. "decache": "^4.5.1",
  30. "flow-bin": "^0.92.1",
  31. "sinon": "^7.2.3",
  32. "standard": "^12.0.1",
  33. "standard-markdown": "^5.0.1",
  34. "tap": "^12.5.1"
  35. },
  36. "dependencies": {},
  37. "engines": {
  38. "node": ">=6"
  39. },
  40. "standard": {
  41. "ignore": [
  42. "flow-typed/"
  43. ]
  44. }
  45. }