package.json 867 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "cli-width",
  3. "version": "3.0.0",
  4. "description": "Get stdout window width, with two fallbacks, tty and then a default.",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "node test | tspec",
  8. "coverage": "nyc node test | tspec",
  9. "coveralls": "npm run coverage -s && coveralls < coverage/lcov.info",
  10. "release": "standard-version"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git@github.com:knownasilya/cli-width.git"
  15. },
  16. "author": "Ilya Radchenko <knownasilya@gmail.com>",
  17. "license": "ISC",
  18. "bugs": {
  19. "url": "https://github.com/knownasilya/cli-width/issues"
  20. },
  21. "homepage": "https://github.com/knownasilya/cli-width",
  22. "engines": {
  23. "node": ">= 10"
  24. },
  25. "devDependencies": {
  26. "coveralls": "^3.0.11",
  27. "nyc": "^15.0.1",
  28. "standard-version": "^7.1.0",
  29. "tap-spec": "^5.0.0",
  30. "tape": "^4.13.2"
  31. }
  32. }