package.json 809 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "loose-envify",
  3. "version": "1.4.0",
  4. "description": "Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST",
  5. "keywords": [
  6. "environment",
  7. "variables",
  8. "browserify",
  9. "browserify-transform",
  10. "transform",
  11. "source",
  12. "configuration"
  13. ],
  14. "homepage": "https://github.com/zertosh/loose-envify",
  15. "license": "MIT",
  16. "author": "Andres Suarez <zertosh@gmail.com>",
  17. "main": "index.js",
  18. "bin": {
  19. "loose-envify": "cli.js"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git://github.com/zertosh/loose-envify.git"
  24. },
  25. "scripts": {
  26. "test": "tap test/*.js"
  27. },
  28. "dependencies": {
  29. "js-tokens": "^3.0.0 || ^4.0.0"
  30. },
  31. "devDependencies": {
  32. "browserify": "^13.1.1",
  33. "envify": "^3.4.0",
  34. "tap": "^8.0.0"
  35. }
  36. }