package.json 985 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "set-blocking",
  3. "version": "2.0.0",
  4. "description": "set blocking stdio and stderr ensuring that terminal output does not truncate",
  5. "main": "index.js",
  6. "scripts": {
  7. "pretest": "standard",
  8. "test": "nyc mocha ./test/*.js",
  9. "coverage": "nyc report --reporter=text-lcov | coveralls",
  10. "version": "standard-version"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/yargs/set-blocking.git"
  15. },
  16. "keywords": [
  17. "flush",
  18. "terminal",
  19. "blocking",
  20. "shim",
  21. "stdio",
  22. "stderr"
  23. ],
  24. "author": "Ben Coe <ben@npmjs.com>",
  25. "license": "ISC",
  26. "bugs": {
  27. "url": "https://github.com/yargs/set-blocking/issues"
  28. },
  29. "homepage": "https://github.com/yargs/set-blocking#readme",
  30. "devDependencies": {
  31. "chai": "^3.5.0",
  32. "coveralls": "^2.11.9",
  33. "mocha": "^2.4.5",
  34. "nyc": "^6.4.4",
  35. "standard": "^7.0.1",
  36. "standard-version": "^2.2.1"
  37. },
  38. "files": [
  39. "index.js",
  40. "LICENSE.txt"
  41. ]
  42. }