package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "dotenv",
  3. "version": "16.5.0",
  4. "description": "Loads environment variables from .env file",
  5. "main": "lib/main.js",
  6. "types": "lib/main.d.ts",
  7. "exports": {
  8. ".": {
  9. "types": "./lib/main.d.ts",
  10. "require": "./lib/main.js",
  11. "default": "./lib/main.js"
  12. },
  13. "./config": "./config.js",
  14. "./config.js": "./config.js",
  15. "./lib/env-options": "./lib/env-options.js",
  16. "./lib/env-options.js": "./lib/env-options.js",
  17. "./lib/cli-options": "./lib/cli-options.js",
  18. "./lib/cli-options.js": "./lib/cli-options.js",
  19. "./package.json": "./package.json"
  20. },
  21. "scripts": {
  22. "dts-check": "tsc --project tests/types/tsconfig.json",
  23. "lint": "standard",
  24. "pretest": "npm run lint && npm run dts-check",
  25. "test": "tap run --allow-empty-coverage --disable-coverage --timeout=60000",
  26. "test:coverage": "tap run --show-full-coverage --timeout=60000 --coverage-report=lcov",
  27. "prerelease": "npm test",
  28. "release": "standard-version"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "git://github.com/motdotla/dotenv.git"
  33. },
  34. "homepage": "https://github.com/motdotla/dotenv#readme",
  35. "funding": "https://dotenvx.com",
  36. "keywords": [
  37. "dotenv",
  38. "env",
  39. ".env",
  40. "environment",
  41. "variables",
  42. "config",
  43. "settings"
  44. ],
  45. "readmeFilename": "README.md",
  46. "license": "BSD-2-Clause",
  47. "devDependencies": {
  48. "@types/node": "^18.11.3",
  49. "decache": "^4.6.2",
  50. "sinon": "^14.0.1",
  51. "standard": "^17.0.0",
  52. "standard-version": "^9.5.0",
  53. "tap": "^19.2.0",
  54. "typescript": "^4.8.4"
  55. },
  56. "engines": {
  57. "node": ">=12"
  58. },
  59. "browser": {
  60. "fs": false
  61. }
  62. }