forked from brenden/node-webshot
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 828 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 828 Bytes
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
{
"name": "bfn-webshot",
"version": "1.1.0",
"description": "Easy website screenshots",
"author": "Blue Fidelity Inc. (https://www.bluefidelity.com/)",
"homepage": "https://www.bluefidelity.com/",
"license": "MIT",
"repository": "BlueFidelity/node-webshot",
"engine": [
"node >=0.7.00"
],
"dependencies": {
"graceful-fs": "~3.0.4",
"cross-spawn": "^0.2.3",
"tmp": "~0.0.25"
},
"optionalDependencies": {
"phantomjs-prebuilt": "^2.1.3"
},
"devDependencies": {
"imagemagick": "git://github.com/rsms/node-imagemagick.git",
"mocha": "*",
"should": "*"
},
"main": "./lib/webshot.js",
"scripts": {
"test": "mocha --ui bdd --reporter spec --require should ./test/core.js ./test/options/*"
},
"keywords": [
"webshot",
"screenshot",
"screengrab"
]
}