package.json 977 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "cli-width",
  3. "version": "4.1.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": ">= 12"
  24. },
  25. "devDependencies": {
  26. "coveralls": "^3.1.1",
  27. "nyc": "^15.1.0",
  28. "standard-version": "^9.3.2",
  29. "tap-spec": "^5.0.0",
  30. "tape": "^5.5.2"
  31. },
  32. "volta": {
  33. "node": "12.22.11",
  34. "npm": "8.5.5"
  35. },
  36. "files": [
  37. "index.js",
  38. "index.d.ts"
  39. ]
  40. }