package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "dotenv",
  3. "version": "10.0.0",
  4. "description": "Loads environment variables from .env file",
  5. "main": "lib/main.js",
  6. "exports": {
  7. ".": "./lib/main.js",
  8. "./config": "./config.js",
  9. "./config.js": "./config.js",
  10. "./package.json": "./package.json"
  11. },
  12. "types": "types/index.d.ts",
  13. "scripts": {
  14. "flow": "flow",
  15. "dtslint": "dtslint types",
  16. "lint": "standard",
  17. "postlint": "standard-markdown",
  18. "pretest": "npm run lint && npm run dtslint",
  19. "test": "tap tests/*.js --100",
  20. "prerelease": "npm test",
  21. "release": "standard-version"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git://github.com/motdotla/dotenv.git"
  26. },
  27. "keywords": [
  28. "dotenv",
  29. "env",
  30. ".env",
  31. "environment",
  32. "variables",
  33. "config",
  34. "settings"
  35. ],
  36. "readmeFilename": "README.md",
  37. "license": "BSD-2-Clause",
  38. "devDependencies": {
  39. "decache": "^4.5.1",
  40. "dtslint": "^0.9.8",
  41. "flow-bin": "^0.109.0",
  42. "sinon": "^7.5.0",
  43. "standard": "^13.1.0",
  44. "standard-markdown": "^5.1.0",
  45. "standard-version": "^7.0.0",
  46. "tap": "^14.7.0"
  47. },
  48. "dependencies": {},
  49. "engines": {
  50. "node": ">=10"
  51. },
  52. "standard": {
  53. "ignore": [
  54. "flow-typed/"
  55. ]
  56. }
  57. }