-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 874 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 874 Bytes
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
{
"name": "@membrane/wasm-stack-trace",
"version": "0.1.1",
"description": "Enhance `Error.stack` with wasm demangled symbols and file/line/column information. Uses DWARF data to symbolicate stack traces.",
"keywords": [
"wasm",
"WebAssembly",
"backtrace",
"callstack",
"stack trace",
"symbols",
"DWARF",
"debugging"
],
"homepage": "https://github.com/membrane-io/wasm-stack-trace#readme",
"bugs": {
"url": "https://github.com/membrane-io/wasm-stack-trace/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/membrane-io/wasm-stack-trace.git"
},
"license": "ISC",
"author": "Juan Campa",
"type": "module",
"main": "dist/index.js",
"files": [
"./dist"
],
"scripts": {
"test": "pushd fibonacci && cargo build && popd && node test.js",
"build": "node build.js"
}
}