package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "dotenv",
  3. "version": "16.4.7",
  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. "funding": "https://dotenvx.com",
  35. "keywords": [
  36. "dotenv",
  37. "env",
  38. ".env",
  39. "environment",
  40. "variables",
  41. "config",
  42. "settings"
  43. ],
  44. "readmeFilename": "README.md",
  45. "license": "BSD-2-Clause",
  46. "devDependencies": {
  47. "@types/node": "^18.11.3",
  48. "decache": "^4.6.2",
  49. "sinon": "^14.0.1",
  50. "standard": "^17.0.0",
  51. "standard-version": "^9.5.0",
  52. "tap": "^19.2.0",
  53. "typescript": "^4.8.4"
  54. },
  55. "engines": {
  56. "node": ">=12"
  57. },
  58. "browser": {
  59. "fs": false
  60. }
  61. }