forked from FWeinb/node-webkit-screenshot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 889 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 889 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
35
36
37
38
39
40
41
{
"name": "node-webkit-screenshot",
"version": "0.2.1",
"description": "Take screenshots using node-webkit",
"repository": "FWeinb/node-webkit-screenshot",
"main": "index.js",
"scripts": {
"postinstall": "npm install --prefix ./nw-screenshot",
"test": "mocha test"
},
"keywords": [
"screenshot",
"node-webkit",
"webkit",
"node"
],
"files": [
"nw-screenshot",
"index.js",
"browser.js"
],
"author": "Fabrice Weinberg <Fabrice@weinberg.me>",
"engines": {
"node": ">=0.10.0"
},
"license": "MIT",
"dependencies": {
"nodewebkit": "^0.10.0-rc1-3",
"win-spawn": "^2.0.0",
"socket.io": "^1.1.0",
"bluebird": "^2.2.1"
},
"devDependencies": {
"assert": "^1.1.1",
"image-size": "^0.3.0",
"lodash.once": "^2.4.1",
"concat-stream": "^1.4.6",
"is-png": "^0.1.1",
"is-jpg": "^0.1.2"
}
}