package.json 907 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "gulp-rename",
  3. "version": "2.0.0",
  4. "description": "Rename files",
  5. "keywords": [
  6. "gulpplugin"
  7. ],
  8. "homepage": "https://github.com/hparra/gulp-rename",
  9. "bugs": "https://github.com/hparra/gulp-rename/issues",
  10. "author": {
  11. "name": "Hector Guillermo Parra Alvarez",
  12. "email": "hector@hectorparra.com",
  13. "url": "https://github.com/hparra"
  14. },
  15. "main": "./index.js",
  16. "files": [
  17. "index.js"
  18. ],
  19. "repository": {
  20. "type": "git",
  21. "url": "git://github.com/hparra/gulp-rename.git"
  22. },
  23. "scripts": {
  24. "pretest": "prettier --single-quote --write index.js test/**/*.js",
  25. "test": "mocha"
  26. },
  27. "devDependencies": {
  28. "gulp": "^4.0.2",
  29. "gulp-sourcemaps": "^2.6.5",
  30. "map-stream": "^0.0.7",
  31. "mocha": "^6.0.0",
  32. "prettier": "^1.19.1",
  33. "should": "^13.2.3",
  34. "vinyl": "^2.0.0"
  35. },
  36. "engines": {
  37. "node": ">=4"
  38. },
  39. "license": "MIT"
  40. }