-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.06 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
{
"name": "webcap",
"version": "0.18.0",
"description": "Easy website screenshots",
"author": "Brenden Kokoszka",
"contributors": [
{
"name": "Brenden Kokoszka",
"email": "brenden.kokoszka@gmail.com"
},
{
"name": "Matthew Chase Whittemore",
"email": "mcwhittemore@gmail.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/blockai/webcap.git"
},
"engine": [
"node >=0.7.00"
],
"dependencies": {
"concat-stream": "^1.5.2",
"cross-spawn": "^0.2.3",
"graceful-fs": "~3.0.4",
"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 --timeout 20000 --ui bdd --reporter spec --require should ./test/core.js ./test/options/*"
},
"keywords": [
"screenshot",
"screengrab",
"web",
"webcap",
"phantomjs",
"phantom"
]
}