forked from Jstarfish/JavaKeeper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 986 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "window-size",
"description": "Reliable way to to get the height and width of the terminal/console in a node.js environment.",
"version": "0.1.4",
"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"
]
}
}
}