package.json 911 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "gulp-replace",
  3. "version": "1.1.4",
  4. "description": "A string replace plugin for gulp",
  5. "dependencies": {
  6. "@types/node": "*",
  7. "@types/vinyl": "^2.0.4",
  8. "istextorbinary": "^3.0.0",
  9. "replacestream": "^4.0.3",
  10. "yargs-parser": ">=5.0.0-security.0"
  11. },
  12. "devDependencies": {
  13. "concat-stream": "^2.0.0",
  14. "mocha": "^10.2.0",
  15. "npm-which": "^3.0.1",
  16. "should": "^13.2.3",
  17. "ts-node": "^9.1.1",
  18. "typescript": "^4.2.4",
  19. "vinyl": "^2.2.1"
  20. },
  21. "scripts": {
  22. "test": "mocha"
  23. },
  24. "main": "index.js",
  25. "types": "index.d.ts",
  26. "repository": {
  27. "type": "git",
  28. "url": "git://github.com/lazd/gulp-replace.git"
  29. },
  30. "keywords": [
  31. "gulpplugin",
  32. "replace"
  33. ],
  34. "author": "Larry Davis <lazdnet@gmail.com>",
  35. "license": "MIT",
  36. "bugs": {
  37. "url": "https://github.com/lazd/gulp-replace/issues"
  38. },
  39. "engines": {
  40. "node": ">=10"
  41. }
  42. }