forked from kasprownik/electron-screencapture
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.1 KB
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
{
"name": "electron-screencapture",
"version": "1.1.0",
"description": "Library that allows to take a picture or a video from any fragment of the display",
"main": "dist/main.js",
"scripts": {
"build": "webpack -p --config ./build.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kasprownik/electron-screencapture.git"
},
"keywords": [
"electron",
"screenshot",
"screencast",
"webrtc"
],
"author": "Kasper Warguła <kasper@wargu.la> (https://twitter.com/KasperWargula)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kasprownik/electron-screencapture/issues"
},
"homepage": "https://github.com/kasprownik/electron-screencapture#readme",
"devDependencies": {
"babel-core": "6.4.5",
"babel-loader": "6.2.1",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"webpack": "1.12.12"
},
"dependencies": {
"array-find": "1.0.0",
"lodash.findindex": "4.3.0",
"recordrtc": "5.1.0"
}
}