-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 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
40
41
42
43
44
{
"name": "electron-mksnapshot",
"version": "0.0.0-development",
"description": "Electron version of the mksnapshot binary",
"repository": {
"type": "git",
"url": "git+https://github.com/electron/mksnapshot.git"
},
"bin": {
"mksnapshot": "mksnapshot.js"
},
"files": [
"./download-mksnapshot.js",
"./mksnapshot.js"
],
"scripts": {
"mksnapshot": "node ./mksnapshot.js",
"install": "node ./download-mksnapshot.js",
"prettier": "prettier --single-quote --no-semi --check \"**/*.{js,mjs}\"",
"prettier:write": "prettier --single-quote --no-semi --write \"**/*.{js,mjs}\"",
"test": "node --test test/mksnapshot.test.mjs && npm run prettier"
},
"license": "MIT",
"dependencies": {
"@electron/get": "^2.0.1",
"extract-zip": "^2.0.0",
"fs-extra": "^7.0.1",
"temp": "^0.8.3"
},
"devDependencies": {
"@electron/fiddle-core": "^1.3.0",
"prettier": "^3.6.2",
"semver": "^7.3.8"
},
"standard": {
"ignore": [
"test/fixtures"
]
},
"engines": {
"node": ">=10.5.0"
},
"packageManager": "yarn@4.10.3+sha512.c38cafb5c7bb273f3926d04e55e1d8c9dfa7d9c3ea1f36a4868fa028b9e5f72298f0b7f401ad5eb921749eb012eb1c3bb74bf7503df3ee43fd600d14a018266f"
}