package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "move-concurrently",
  3. "version": "1.0.1",
  4. "description": "Promises of moves of files or directories with rename, falling back to recursive rename/copy on EXDEV errors, with configurable concurrency and win32 junction support.",
  5. "main": "move.js",
  6. "scripts": {
  7. "test": "standard && tap --coverage test"
  8. },
  9. "keywords": [
  10. "move"
  11. ],
  12. "author": "Rebecca Turner <me@re-becca.org> (http://re-becca.org/)",
  13. "license": "ISC",
  14. "dependencies": {
  15. "copy-concurrently": "^1.0.0",
  16. "aproba": "^1.1.1",
  17. "fs-write-stream-atomic": "^1.0.8",
  18. "mkdirp": "^0.5.1",
  19. "rimraf": "^2.5.4",
  20. "run-queue": "^1.0.3"
  21. },
  22. "devDependencies": {
  23. "standard": "^8.6.0",
  24. "tacks": "^1.2.6",
  25. "tap": "^10.1.1"
  26. },
  27. "files": [
  28. "move.js",
  29. "is-windows.js"
  30. ],
  31. "directories": {
  32. "test": "test"
  33. },
  34. "repository": {
  35. "type": "git",
  36. "url": "git+https://github.com/npm/move-concurrently.git"
  37. },
  38. "bugs": {
  39. "url": "https://github.com/npm/move-concurrently/issues"
  40. },
  41. "homepage": "https://www.npmjs.com/package/move-concurrently"
  42. }