package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "dotenv-expand",
  3. "version": "10.0.0",
  4. "description": "Expand environment variables using dotenv",
  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. "pretest": "npm run lint && npm run dts-check",
  21. "test": "lab tests --coverage"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/motdotla/dotenv-expand"
  26. },
  27. "author": "motdotla",
  28. "keywords": [
  29. "dotenv",
  30. "expand",
  31. "variables",
  32. "env",
  33. ".env"
  34. ],
  35. "readmeFilename": "README.md",
  36. "license": "BSD-2-Clause",
  37. "devDependencies": {
  38. "@hapi/lab": "^24.5.1",
  39. "@types/node": "^17.0.8",
  40. "dotenv": "16.0.3",
  41. "lab": "^14.3.4",
  42. "should": "^11.2.1",
  43. "standard": "^16.0.4",
  44. "typescript": "^4.5.4"
  45. },
  46. "engines": {
  47. "node": ">=12"
  48. }
  49. }