-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
67 lines (67 loc) · 1.3 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
{
"name": "screenshot-stream",
"version": "4.2.0",
"description": "Capture screenshot of a website and return it as a stream",
"license": "MIT",
"repository": "kevva/screenshot-stream",
"author": {
"name": "Kevin Mårtensson",
"email": "[email protected]",
"url": "github.com/kevva"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js",
"stream.js"
],
"keywords": [
"image",
"page",
"phantom",
"phantomjs",
"resolution",
"screen",
"screenshot",
"size",
"stream",
"url"
],
"dependencies": {
"base64-stream": "^0.1.2",
"byline": "^4.2.1",
"object-assign": "^4.0.1",
"parse-cookie-phantomjs": "^1.0.0",
"phantom-bridge": "^2.0.0"
},
"devDependencies": {
"ava": "*",
"cookie": "^0.3.1",
"get-port": "^3.1.0",
"get-stream": "^3.0.0",
"image-size": "^0.5.4",
"is-jpg": "^1.0.0",
"is-png": "^1.0.0",
"pify": "^3.0.0",
"png-js": "^0.1.1",
"xo": "*"
},
"xo": {
"esnext": true,
"overrides": [
{
"files": "stream.js",
"esnext": false,
"rules": {
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"no-multi-assign": 0
}
}
]
}
}