package.json 827 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "cli-width",
  3. "version": "2.2.1",
  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. "devDependencies": {
  23. "coveralls": "^3.0.11",
  24. "nyc": "^15.0.1",
  25. "standard-version": "^7.1.0",
  26. "tap-spec": "^5.0.0",
  27. "tape": "^4.13.2"
  28. }
  29. }