package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "replace-in-file",
  3. "version": "6.3.5",
  4. "description": "A simple utility to quickly replace text in one or more files.",
  5. "homepage": "https://github.com/adamreisnz/replace-in-file#readme",
  6. "author": {
  7. "name": "Adam Reis",
  8. "email": "adam@reis.nz",
  9. "url": "https://adam.reiz.nz/"
  10. },
  11. "license": "MIT",
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/adamreisnz/replace-in-file.git"
  15. },
  16. "bugs": {
  17. "url": "https://github.com/adamreisnz/replace-in-file/issues"
  18. },
  19. "keywords": [
  20. "replace",
  21. "text",
  22. "contents",
  23. "file"
  24. ],
  25. "main": "index.js",
  26. "bin": "./bin/cli.js",
  27. "types": "./types/index.d.ts",
  28. "engines": {
  29. "node": ">=10"
  30. },
  31. "scripts": {
  32. "test": "nyc mocha 'lib/**/*.spec.js'",
  33. "postversion": "git push && git push --tags && npm publish",
  34. "coverage": "open -a \"Google Chrome\" ./coverage/lcov-report/index.html"
  35. },
  36. "dependencies": {
  37. "chalk": "^4.1.2",
  38. "glob": "^7.2.0",
  39. "yargs": "^17.2.1"
  40. },
  41. "devDependencies": {
  42. "@babel/core": "^7.15.8",
  43. "@babel/cli": "^7.15.7",
  44. "@babel/preset-env": "^7.15.8",
  45. "@babel/register": "^7.15.3",
  46. "babel-plugin-istanbul": "^6.1.1",
  47. "bluebird": "^3.7.2",
  48. "chai": "^4.3.4",
  49. "chai-as-promised": "^7.1.1",
  50. "dirty-chai": "^2.0.1",
  51. "mocha": "^9.1.3",
  52. "nyc": "^15.0.1"
  53. },
  54. "browserify": {
  55. "transform": [
  56. [
  57. "babelify",
  58. {
  59. "presets": [
  60. "es2015"
  61. ]
  62. }
  63. ]
  64. ]
  65. }
  66. }