-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
40 lines (40 loc) · 898 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
40
{
"name": "electron-mksnapshot",
"version": "0.0.0-development",
"description": "Electron version of the mksnapshot binary",
"repository": "https://github.com/electron/mksnapshot",
"bin": {
"mksnapshot": "./mksnapshot.js"
},
"files": [
"./download-mksnapshot.js",
"./mksnapshot.js"
],
"scripts": {
"mksnapshot": "node ./mksnapshot.js",
"install": "node ./download-mksnapshot.js",
"test": "mocha && standard"
},
"license": "MIT",
"dependencies": {
"@electron/get": "^2.0.1",
"extract-zip": "^2.0.0",
"fs-extra": "^7.0.1",
"temp": "^0.8.3"
},
"devDependencies": {
"@continuous-auth/client": "^2.3.0",
"@electron/fiddle-core": "^1.3.0",
"mocha": "^10.1.0",
"semver": "^7.3.8",
"standard": "^14.3.1"
},
"standard": {
"ignore": [
"test/fixtures"
]
},
"engines": {
"node": ">=10.5.0"
}
}