-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
36 lines (36 loc) · 870 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
{
"name": "capture-electron",
"description": "Capture screenshots using electron",
"version": "4.0.3",
"repository": {
"type": "git",
"url": "git://github.com/juliangruber/capture-electron.git"
},
"scripts": {
"test": "tap --reporter=tap test.js && npm run lint",
"lint": "prettier-standard '**/*.js' && standard"
},
"homepage": "https://github.com/juliangruber/capture-electron",
"main": "index.js",
"dependencies": {
"electron": "^15.1.2",
"safe-buffer": "^5.1.1",
"shell-escape": "^0.2.0"
},
"devDependencies": {
"prettier-standard": "^8.0.1",
"standard": "^11.0.1",
"tap": "^12.0.1"
},
"keywords": [
"electron",
"screenshot",
"headless"
],
"author": {
"name": "Julian Gruber",
"email": "[email protected]",
"url": "http://juliangruber.com"
},
"license": "MIT"
}