-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
42 lines (42 loc) · 940 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
41
42
{
"main": "./lib/minidump.js",
"name": "minidump",
"description": "Read and process minidump file",
"version": "0.0.0-development",
"types": "index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/electron/node-minidump.git"
},
"engines": {
"node": ">=14"
},
"bugs": {
"url": "https://github.com/electron/node-minidump/issues"
},
"scripts": {
"prepublishOnly": "shx chmod -R +x ./bin",
"preinstall": "yarn submodule && node build.js",
"submodule": "git submodule update --init --recursive",
"test": "mocha test && standard"
},
"devDependencies": {
"@electron/get": "^2.0.2",
"extract-zip": "^1.5.0",
"mocha": "^10.8.2",
"shx": "^0.3.3",
"standard": "^17.0.0",
"temp": "^0.8.3"
},
"files": [
"LICENSE.md",
"README.md",
"/bin",
"/lib",
"index.d.ts",
"build.js",
"deps",
"bin"
]
}