package.json 907 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "cli-width",
  3. "version": "2.2.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": "isparta cover test/*.js | tspec",
  9. "coveralls": "npm run coverage -s && coveralls < coverage/lcov.info",
  10. "postcoveralls": "rimraf ./coverage",
  11. "release": "standard-version"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git@github.com:knownasilya/cli-width.git"
  16. },
  17. "author": "Ilya Radchenko <ilya@burstcreations.com>",
  18. "license": "ISC",
  19. "bugs": {
  20. "url": "https://github.com/knownasilya/cli-width/issues"
  21. },
  22. "homepage": "https://github.com/knownasilya/cli-width",
  23. "devDependencies": {
  24. "coveralls": "^2.11.4",
  25. "isparta": "^3.0.4",
  26. "rimraf": "^2.4.3",
  27. "standard-version": "^4.2.0",
  28. "tap-spec": "^4.1.0",
  29. "tape": "^3.4.0"
  30. }
  31. }