forked from brenden/node-webshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 920 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
{
"name": "webshot",
"version": "0.14.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": {
"tmp": "~0.0.23"
},
"optionalDependencies": {
"phantomjs": "~1.9.7-1"
},
"devDependencies": {
"mocha" : "*",
"should": "*",
"imagemagick": "git://github.com/rsms/node-imagemagick.git"
},
"main": "./lib/webshot.js",
"scripts": {
"test" : "mocha --ui bdd --reporter spec --require should --globals i ./test/tests.js"
},
"keywords": [
"screenshot",
"screengrab"
]
}