package.json 751 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "tmp",
  3. "version": "0.0.33",
  4. "description": "Temporary file and directory creator",
  5. "author": "KARASZI István <github@spam.raszi.hu> (http://raszi.hu/)",
  6. "keywords": [
  7. "temporary",
  8. "tmp",
  9. "temp",
  10. "tempdir",
  11. "tempfile",
  12. "tmpdir",
  13. "tmpfile"
  14. ],
  15. "license": "MIT",
  16. "repository": "raszi/node-tmp",
  17. "homepage": "http://github.com/raszi/node-tmp",
  18. "bugs": {
  19. "url": "http://github.com/raszi/node-tmp/issues"
  20. },
  21. "engines": {
  22. "node": ">=0.6.0"
  23. },
  24. "dependencies": {
  25. "os-tmpdir": "~1.0.2"
  26. },
  27. "devDependencies": {
  28. "vows": "~0.7.0"
  29. },
  30. "main": "lib/tmp.js",
  31. "files": [
  32. "lib/"
  33. ],
  34. "scripts": {
  35. "test": "vows test/*-test.js",
  36. "doc": "jsdoc -c .jsdoc.json"
  37. }
  38. }