package.json 520 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "dotenv-expand",
  3. "version": "5.1.0",
  4. "description": "Expand environment variables using dotenv",
  5. "main": "lib/main.js",
  6. "scripts": {
  7. "test": "lab test/* --coverage",
  8. "posttest": "npm run lint",
  9. "lint": "standard"
  10. },
  11. "keywords": [
  12. "dotenv",
  13. "expand",
  14. "variables"
  15. ],
  16. "author": "motdotla",
  17. "license": "BSD-2-Clause",
  18. "devDependencies": {
  19. "dotenv": "^4.0.0",
  20. "lab": "^13.0.1",
  21. "should": "^11.2.1",
  22. "standard": "^9.0.2"
  23. },
  24. "types": "./index.d.ts"
  25. }