package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "dotenv",
  3. "version": "8.6.0",
  4. "description": "Loads environment variables from .env file",
  5. "main": "lib/main.js",
  6. "exports": {
  7. ".": "./lib/main.js",
  8. "./config": "./config.js",
  9. "./package.json": "./package.json"
  10. },
  11. "types": "types/index.d.ts",
  12. "scripts": {
  13. "flow": "flow",
  14. "dtslint": "dtslint types",
  15. "lint": "standard",
  16. "postlint": "standard-markdown",
  17. "pretest": "npm run lint && npm run dtslint",
  18. "test": "tap tests/*.js --100",
  19. "prerelease": "npm test",
  20. "release": "standard-version"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git://github.com/motdotla/dotenv.git"
  25. },
  26. "keywords": [
  27. "dotenv",
  28. "env",
  29. ".env",
  30. "environment",
  31. "variables",
  32. "config",
  33. "settings"
  34. ],
  35. "readmeFilename": "README.md",
  36. "license": "BSD-2-Clause",
  37. "devDependencies": {
  38. "decache": "^4.5.1",
  39. "dtslint": "^0.9.8",
  40. "flow-bin": "^0.109.0",
  41. "sinon": "^7.5.0",
  42. "standard": "^13.1.0",
  43. "standard-markdown": "^5.1.0",
  44. "standard-version": "^7.0.0",
  45. "tap": "^14.7.0"
  46. },
  47. "dependencies": {},
  48. "engines": {
  49. "node": ">=10"
  50. },
  51. "standard": {
  52. "ignore": [
  53. "flow-typed/"
  54. ]
  55. }
  56. }