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.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "tmp",
  3. "version": "0.2.3",
  4. "description": "Temporary file and directory creator",
  5. "author": "KARASZI István <github@spam.raszi.hu> (http://raszi.hu/)",
  6. "contributors": [
  7. "Carsten Klein <trancesilken@gmail.com> (https://github.com/silkentrance)"
  8. ],
  9. "keywords": [
  10. "temporary",
  11. "tmp",
  12. "temp",
  13. "tempdir",
  14. "tempfile",
  15. "tmpdir",
  16. "tmpfile"
  17. ],
  18. "license": "MIT",
  19. "repository": "https://github.com/raszi/node-tmp.git",
  20. "homepage": "http://github.com/raszi/node-tmp",
  21. "bugs": {
  22. "url": "http://github.com/raszi/node-tmp/issues"
  23. },
  24. "engines": {
  25. "node": ">=14.14"
  26. },
  27. "dependencies": {},
  28. "devDependencies": {
  29. "eslint": "^6.3.0",
  30. "eslint-plugin-mocha": "^6.1.1",
  31. "istanbul": "^0.4.5",
  32. "lerna-changelog": "^1.0.1",
  33. "mocha": "^10.2.0"
  34. },
  35. "main": "lib/tmp.js",
  36. "files": [
  37. "lib/"
  38. ],
  39. "changelog": {
  40. "labels": {
  41. "breaking": ":boom: Breaking Change",
  42. "enhancement": ":rocket: Enhancement",
  43. "bug": ":bug: Bug Fix",
  44. "documentation": ":memo: Documentation",
  45. "internal": ":house: Internal"
  46. },
  47. "cacheDir": ".changelog"
  48. },
  49. "scripts": {
  50. "changelog": "lerna-changelog",
  51. "lint": "eslint lib --env mocha test",
  52. "clean": "rm -Rf ./coverage",
  53. "test": "npm run clean && istanbul cover ./node_modules/mocha/bin/_mocha --report none --print none --dir ./coverage/json -u exports -R test/*-test.js && istanbul report --root ./coverage/json html && istanbul report text-summary",
  54. "doc": "jsdoc -c .jsdoc.json"
  55. }
  56. }