package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "dotenv",
  3. "version": "16.0.1",
  4. "description": "Loads environment variables from .env file",
  5. "main": "lib/main.js",
  6. "types": "lib/main.d.ts",
  7. "exports": {
  8. ".": {
  9. "require": "./lib/main.js",
  10. "types": "./lib/main.d.ts",
  11. "default": "./lib/main.js"
  12. },
  13. "./config": "./config.js",
  14. "./config.js": "./config.js",
  15. "./package.json": "./package.json"
  16. },
  17. "scripts": {
  18. "dts-check": "tsc --project tests/types/tsconfig.json",
  19. "lint": "standard",
  20. "lint-readme": "standard-markdown",
  21. "pretest": "npm run lint && npm run dts-check",
  22. "test": "tap tests/*.js --100 -Rspec",
  23. "prerelease": "npm test",
  24. "release": "standard-version"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git://github.com/motdotla/dotenv.git"
  29. },
  30. "keywords": [
  31. "dotenv",
  32. "env",
  33. ".env",
  34. "environment",
  35. "variables",
  36. "config",
  37. "settings"
  38. ],
  39. "readmeFilename": "README.md",
  40. "license": "BSD-2-Clause",
  41. "devDependencies": {
  42. "@types/node": "^17.0.9",
  43. "decache": "^4.6.1",
  44. "dtslint": "^3.7.0",
  45. "sinon": "^12.0.1",
  46. "standard": "^16.0.4",
  47. "standard-markdown": "^7.1.0",
  48. "standard-version": "^9.3.2",
  49. "tap": "^15.1.6",
  50. "tar": "^6.1.11",
  51. "typescript": "^4.5.4"
  52. },
  53. "engines": {
  54. "node": ">=12"
  55. }
  56. }