You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 813B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "temp",
  3. "description": "Temporary files and directories",
  4. "tags": [
  5. "temporary",
  6. "temp",
  7. "tempfile",
  8. "tempdir",
  9. "tmpfile",
  10. "tmpdir",
  11. "security"
  12. ],
  13. "version": "0.9.4",
  14. "author": "Bruce Williams <brwcodes@gmail.com>",
  15. "license": "MIT",
  16. "directories": {
  17. "lib": "lib"
  18. },
  19. "engines": {
  20. "node": ">=6.0.0"
  21. },
  22. "main": "./lib/temp",
  23. "dependencies": {
  24. "rimraf": "~2.6.2",
  25. "mkdirp": "^0.5.1"
  26. },
  27. "keywords": [
  28. "temporary",
  29. "tmp",
  30. "temp",
  31. "tempdir",
  32. "tempfile",
  33. "tmpdir",
  34. "tmpfile"
  35. ],
  36. "files": [
  37. "lib"
  38. ],
  39. "devDependencies": {
  40. "mocha": "6.2.3"
  41. },
  42. "repository": {
  43. "type": "git",
  44. "url": "git://github.com/bruce/node-temp.git"
  45. },
  46. "scripts": {
  47. "test": "mocha test/temp-test.js"
  48. }
  49. }