package.json 665 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "@npmcli/move-file",
  3. "version": "1.1.2",
  4. "files": [
  5. "index.js"
  6. ],
  7. "description": "move a file (fork of move-file)",
  8. "dependencies": {
  9. "mkdirp": "^1.0.4",
  10. "rimraf": "^3.0.2"
  11. },
  12. "devDependencies": {
  13. "require-inject": "^1.4.4",
  14. "tap": "^14.10.7"
  15. },
  16. "scripts": {
  17. "test": "tap",
  18. "snap": "tap",
  19. "preversion": "npm test",
  20. "postversion": "npm publish",
  21. "prepublishOnly": "git push origin --follow-tags"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git+https://github.com/npm/move-file"
  26. },
  27. "tap": {
  28. "check-coverage": true
  29. },
  30. "license": "MIT",
  31. "engines": {
  32. "node": ">=10"
  33. }
  34. }