-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 933 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
{
"name": "electron-mksnapshot",
"version": "12.2.3",
"author": "Alex313031 <https://github.com/Alex313031>",
"description": "Electron version of the mksnapshot binary",
"repository": {
"type": "git",
"url": "git+https://github.com/Alex313031/mksnapshot-ng.git"
},
"homepage": "https://github.com/Alex313031/mksnapshot-ng",
"bin": {
"mksnapshot": "./mksnapshot.js"
},
"scripts": {
"install": "node ./download-mksnapshot.js",
"lint": "standard --fix",
"test": "standard && mocha",
"clean": "rm -r -f -v ./node_modules && rm -r -f -v ./bin/*"
},
"license": "MIT",
"dependencies": {
"@electron/get": "^1.14.1",
"extract-zip": "^2.0.1",
"fs-extra": "9.1.0",
"temp": "^0.8.4"
},
"devDependencies": {
"mocha": "^8.4.0",
"standard": "^14.3.4"
},
"standard": {
"ignore": [
"test/fixtures"
]
},
"engines": {
"node": ">=12.22.9"
}
}