123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {
- "name": "window-size",
- "description": "Reliable way to to get the height and width of the terminal/console in a node.js environment.",
- "version": "0.2.0",
- "homepage": "https://github.com/jonschlinkert/window-size",
- "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
- "repository": "jonschlinkert/window-size",
- "bugs": {
- "url": "https://github.com/jonschlinkert/window-size/issues"
- },
- "license": "MIT",
- "files": [
- "index.js",
- "cli.js"
- ],
- "main": "index.js",
- "engines": {
- "node": ">= 0.10.0"
- },
- "scripts": {
- "pretest": "semistandard",
- "test": "tap --coverage test.js"
- },
- "bin": "cli.js",
- "devDependencies": {
- "semistandard": "^7.0.2",
- "tap": "^2.2.1"
- },
- "keywords": [
- "console",
- "height",
- "resize",
- "size",
- "terminal",
- "tty",
- "width",
- "window"
- ],
- "verb": {
- "related": {
- "list": [
- "yargs",
- "lint-deps",
- "base-cli"
- ]
- }
- }
- }
|