package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "dotenv",
  3. "version": "16.4.5",
  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. "lint-readme": "standard-markdown",
  25. "pretest": "npm run lint && npm run dts-check",
  26. "test": "tap tests/*.js --100 -Rspec",
  27. "test:coverage": "tap --coverage-report=lcov",
  28. "prerelease": "npm test",
  29. "release": "standard-version"
  30. },
  31. "repository": {
  32. "type": "git",
  33. "url": "git://github.com/motdotla/dotenv.git"
  34. },
  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. "@definitelytyped/dtslint": "^0.0.133",
  49. "@types/node": "^18.11.3",
  50. "decache": "^4.6.1",
  51. "sinon": "^14.0.1",
  52. "standard": "^17.0.0",
  53. "standard-markdown": "^7.1.0",
  54. "standard-version": "^9.5.0",
  55. "tap": "^16.3.0",
  56. "tar": "^6.1.11",
  57. "typescript": "^4.8.4"
  58. },
  59. "engines": {
  60. "node": ">=12"
  61. },
  62. "browser": {
  63. "fs": false
  64. }
  65. }