package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "tmp",
  3. "version": "0.2.1",
  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": ">=8.17.0"
  26. },
  27. "dependencies": {
  28. "rimraf": "^3.0.0"
  29. },
  30. "devDependencies": {
  31. "eslint": "^6.3.0",
  32. "eslint-plugin-mocha": "^6.1.1",
  33. "istanbul": "^0.4.5",
  34. "lerna-changelog": "^1.0.1",
  35. "mocha": "^6.2.0"
  36. },
  37. "main": "lib/tmp.js",
  38. "files": [
  39. "lib/"
  40. ],
  41. "changelog": {
  42. "labels": {
  43. "breaking": ":boom: Breaking Change",
  44. "enhancement": ":rocket: Enhancement",
  45. "bug": ":bug: Bug Fix",
  46. "documentation": ":memo: Documentation",
  47. "internal": ":house: Internal"
  48. },
  49. "cacheDir": ".changelog"
  50. },
  51. "scripts": {
  52. "changelog": "lerna-changelog",
  53. "lint": "eslint lib --env mocha test",
  54. "clean": "rm -Rf ./coverage",
  55. "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",
  56. "doc": "jsdoc -c .jsdoc.json"
  57. }
  58. }