package.json 1.0 KB

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