package.json 741 B

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