package.json 751 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "wrench",
  3. "description": "Recursive filesystem (and other) operations that Node *should* have.",
  4. "version": "1.3.9",
  5. "author": "Ryan McGrath <ryan@venodesigns.net>",
  6. "repository": {
  7. "type" : "git",
  8. "url": "https://ryanmcgrath@github.com/ryanmcgrath/wrench-js.git"
  9. },
  10. "bugs": {
  11. "url": "http://github.com/ryanmcgrath/wrench-js/issues"
  12. },
  13. "directories": {
  14. "lib": "./lib/"
  15. },
  16. "dependencies": {
  17. },
  18. "devDependencies": {
  19. "nodeunit": ">= 0.6.4"
  20. },
  21. "main": "./lib/wrench",
  22. "engines": {
  23. "node": ">=0.1.97"
  24. },
  25. "scripts": { "test": "nodeunit tests/runner.js" },
  26. "licenses": [{
  27. "type" : "MIT",
  28. "url" : "http://github.com/ryanmcgrath/wrench-js/raw/master/LICENSE"
  29. }]
  30. }