package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "tmp",
  3. "version": "0.1.0",
  4. "description": "Temporary file and directory creator",
  5. "author": "KARASZI István <github@spam.raszi.hu> (http://raszi.hu/)",
  6. "keywords": [
  7. "temporary",
  8. "tmp",
  9. "temp",
  10. "tempdir",
  11. "tempfile",
  12. "tmpdir",
  13. "tmpfile"
  14. ],
  15. "license": "MIT",
  16. "repository": "raszi/node-tmp",
  17. "homepage": "http://github.com/raszi/node-tmp",
  18. "bugs": {
  19. "url": "http://github.com/raszi/node-tmp/issues"
  20. },
  21. "engines": {
  22. "node": ">=6"
  23. },
  24. "dependencies": {
  25. "rimraf": "^2.6.3"
  26. },
  27. "devDependencies": {
  28. "eslint": "^4.19.1",
  29. "eslint-plugin-mocha": "^5.0.0",
  30. "istanbul": "^0.4.5",
  31. "mocha": "^5.1.1"
  32. },
  33. "main": "lib/tmp.js",
  34. "files": [
  35. "lib/"
  36. ],
  37. "scripts": {
  38. "lint": "eslint lib --env mocha test",
  39. "clean": "rm -Rf ./coverage",
  40. "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",
  41. "doc": "jsdoc -c .jsdoc.json"
  42. }
  43. }