-
Notifications
You must be signed in to change notification settings - Fork 285
/
package.json
45 lines (45 loc) · 992 Bytes
/
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
{
"name": "webshot",
"version": "0.18.0",
"description": "Easy website screenshots",
"author": "Brenden Kokoszka",
"contributors": [
{
"name": "Brenden Kokoszka",
"email": "[email protected]"
},
{
"name": "Matthew Chase Whittemore",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/brenden/node-webshot.git"
},
"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": [
"screenshot",
"screengrab"
]
}