forked from sindresorhus/pageres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.04 KB
/
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
47
48
49
50
51
52
53
54
55
56
{
"name": "pageres",
"version": "0.2.3",
"description": "Get screenshots of websites in different resolutions",
"license": "MIT",
"repository": "sindresorhus/pageres",
"bin": {
"pageres": "cli.js"
},
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "http://sindresorhus.com"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha --timeout 0"
},
"files": [
"index.js",
"cli.js",
"converter.js"
],
"keywords": [
"page",
"website",
"site",
"web",
"url",
"resolution",
"size",
"screenshot",
"screen",
"responsive",
"cli"
],
"dependencies": {
"each-async": "~0.1.2",
"chalk": "~0.4.0",
"nopt": "~2.2.0",
"slugify-url": "~1.2.0",
"sudo-block": "~0.3.0",
"lodash": "~2.4.1",
"get-stdin": "~0.1.0",
"phantomjs": "1.9.2-6",
"base64-stream": "~0.1.2",
"get-res": "~0.1.3",
"object-assign": "~0.2.0",
"multiline": "^0.1.0"
},
"devDependencies": {
"mocha": "*"
}
}