forked from sindresorhus/pageres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 2.77 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "pageres",
"version": "4.4.0",
"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"
}
],
"main": "dist/index.js",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && npm run prepublish && nyc ava",
"flow": "flow || true",
"prepublish": "babel lib --out-dir=dist",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"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": "^6.6.1",
"easydate": "^2.0.0",
"filenamify": "^2.0.0",
"filenamify-url": "^1.0.0",
"fs-write-stream-atomic": "^1.0.2",
"get-res": "^3.0.0",
"lodash.template": "^4.0.1",
"log-symbols": "^1.0.2",
"mem": "^1.1.0",
"mkdirp": "^0.5.0",
"pify": "^2.3.0",
"plur": "^2.0.0",
"protocolify": "^2.0.0",
"rimraf": "^2.2.8",
"screenshot-stream": "^4.1.0",
"unused-filename": "^0.1.0",
"viewport-list": "^5.0.1"
},
"devDependencies": {
"ava": "*",
"babel-cli": "^6.7.5",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-async-to-generator": "^6.7.4",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-preset-es2015-node4": "^2.1.0",
"cookie": "^0.3.1",
"coveralls": "^2.11.2",
"flow-bin": "^0.42.0",
"get-port": "^3.0.0",
"get-stream": "^3.0.0",
"image-size": "^0.5.0",
"nyc": "^10.0.0",
"path-exists": "^3.0.0",
"png-js": "^0.1.1",
"rfpify": "^1.0.0",
"sinon": "^2.0.0",
"xo": "*"
},
"babel": {
"plugins": [
"transform-async-to-generator",
"transform-runtime",
"transform-flow-strip-types",
"add-module-exports"
],
"presets": [
"es2015-node4"
],
"sourceMaps": "inline"
},
"xo": {
"parser": "babel-eslint",
"rules": {
"generator-star-spacing": "off"
}
}
}