-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.43 KB
/
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
43
44
45
46
47
48
49
50
51
52
{
"name": "node-minidump-stackwalk",
"version": "1.1.1",
"description": "Node.js wrapper for Breakpad's minidump-stackwalk",
"main": "./dist/index.js",
"bin": {
"node-minidump-stackwalk": "./dist/bin/index.js"
},
"files": [
"dist"
],
"scripts": {
"prestart": "mkdirp ./out",
"start": "ts-node ./bin/index.ts -m -p darwin ./spec/support/minidump/minidump.dmp ./spec/support/symbols",
"start:win32": "ts-node ./bin/index.ts -m -p win32 ./spec/support/minidump/minidump.dmp ./spec/support/symbols",
"build": "tsc && copyfiles ./bin/**/* -e ./bin/index.ts dist",
"test": "ts-node ./node_modules/jasmine/bin/jasmine",
"prerelease": "npm run build",
"release": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BugSplat-Git/node-minidump-stackwalk.git"
},
"keywords": [
"bugsplat",
"exception",
"crash",
"reporting",
"breakpad",
"crashpad",
"minidump",
"stackwalk",
"sym",
"dmp"
],
"author": "BugSplat",
"license": "MIT",
"bugs": {
"url": "https://github.com/BugSplat-Git/node-minidump-stackwalk/issues"
},
"homepage": "https://github.com/BugSplat-Git/node-minidump-stackwalk#readme",
"dependencies": {
"@types/jasmine": "^4.3.2",
"@types/node": "^18.11.17",
"copyfiles": "^2.4.1",
"jasmine": "^5.0.1",
"mkdirp": "^2.1.6",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}