package.json 569 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "ncp",
  3. "version": "2.0.0",
  4. "author": "AvianFlu <charlie@charlieistheman.com>",
  5. "description": "Asynchronous recursive file copy utility.",
  6. "bin": {
  7. "ncp": "./bin/ncp"
  8. },
  9. "devDependencies": {
  10. "mocha": "1.15.x",
  11. "rimraf": "1.0.x",
  12. "read-dir-files": "0.0.x"
  13. },
  14. "main": "./lib/ncp.js",
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/AvianFlu/ncp.git"
  18. },
  19. "keywords": [
  20. "cli",
  21. "copy"
  22. ],
  23. "license": "MIT",
  24. "engine": {
  25. "node": ">=0.10"
  26. },
  27. "scripts": {
  28. "test": "mocha -R spec"
  29. }
  30. }