forked from sindresorhus/pageres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.19 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "pageres",
"version": "4.1.1",
"description": "Capture website screenshots",
"license": "MIT",
"repository": "sindresorhus/pageres",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "sindresorhus.com"
},
"maintainers": [
{
"name": "Kevin Mårtensson",
"email": "[email protected]",
"url": "github.com/kevva"
},
{
"name": "Sam Verschueren",
"email": "[email protected]",
"url": "github.com/SamVerschueren"
}
],
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"test": "xo && npm run prepublish && nyc ava",
"prepublish": "babel lib --out-dir=dist --optional=runtime",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"main": "dist/index.js",
"files": [
"dist"
],
"keywords": [
"page",
"website",
"site",
"web",
"url",
"resolution",
"size",
"screenshot",
"screenshots",
"screengrab",
"screen",
"snapshot",
"shot",
"responsive",
"gulpfriendly",
"phantom",
"phantomjs",
"image",
"svg",
"render",
"html",
"headless",
"capture",
"pic",
"picture",
"png",
"jpg",
"jpeg"
],
"dependencies": {
"array-differ": "^1.0.0",
"array-uniq": "^1.0.2",
"babel-runtime": "^5.8.29",
"easydate": "^2.0.0",
"filenamify-url": "^1.0.0",
"fs-write-stream-atomic": "^1.0.2",
"get-res": "^2.0.0",
"lodash.template": "^4.0.1",
"log-symbols": "^1.0.2",
"mem": "^0.1.0",
"mkdirp": "^0.5.0",
"object-assign": "^4.0.1",
"pify": "^2.3.0",
"plur": "^2.0.0",
"protocolify": "^1.0.0",
"rimraf": "^2.2.8",
"screenshot-stream": "^3.1.0",
"viewport-list": "^4.0.1"
},
"devDependencies": {
"ava": "*",
"babel": "^5.8.34",
"cookie": "^0.2.3",
"coveralls": "^2.11.2",
"get-port": "^2.1.0",
"get-stream": "^1.0.0",
"image-size": "^0.4.0",
"nyc": "^5.0.1",
"path-exists": "^2.0.0",
"png-js": "^0.1.1",
"rfpify": "^1.0.0",
"sinon": "^1.17.2",
"xo": "*"
},
"xo": {
"esnext": true,
"ignores": [
"lib/index.js",
"test/_*.js"
]
}
}