-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 843 Bytes
/
package.json
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
{
"name": "viewport-list-cli",
"version": "2.0.0",
"description": "Return a list of devices and their viewports",
"license": "MIT",
"repository": "kevva/viewport-list-cli",
"author": {
"email": "[email protected]",
"name": "Kevin Mårtensson",
"url": "https://github.com/kevva"
},
"engines": {
"node": ">=4"
},
"bin": {
"viewport-list": "cli.js"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"cli.js"
],
"keywords": [
"app",
"cli",
"cli-app",
"device",
"json",
"resolution",
"size",
"viewport"
],
"dependencies": {
"get-stdin": "^5.0.1",
"meow": "^3.3.0",
"obj-to-table": "^1.0.0",
"to-csv": "^0.1.0",
"viewport-list": "^4.0.1"
},
"devDependencies": {
"ava": "*",
"execa": "^0.1.1",
"xo": "*"
}
}