package.json 726 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "tmp-promise",
  3. "version": "3.0.3",
  4. "description": "The tmp package with promises support and disposers.",
  5. "main": "index.js",
  6. "types": "index.d.ts",
  7. "scripts": {
  8. "mocha": "mocha",
  9. "check-types": "tsd",
  10. "test": "npm run mocha && npm run check-types",
  11. "publish": "node publish"
  12. },
  13. "keywords": [
  14. "tmp",
  15. "promise",
  16. "tempfile",
  17. "mkdtemp",
  18. "mktemp"
  19. ],
  20. "author": "Benjamin Gruenbaum and Collaborators.",
  21. "license": "MIT",
  22. "repository": {
  23. "type": "git",
  24. "url": "git://github.com/benjamingr/tmp-promise.git"
  25. },
  26. "dependencies": {
  27. "tmp": "^0.2.0"
  28. },
  29. "devDependencies": {
  30. "@types/tmp": "^0.2.0",
  31. "mocha": "7.1.2",
  32. "tsd": "0.11.0"
  33. }
  34. }