-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.26 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
{
"name": "@indutny/breakpad",
"type": "module",
"version": "1.2.3",
"description": "Fast symbolication of crash reports using breakpad symbol files",
"module": "lib/breakpad.js",
"main": "lib/breakpad.cjs",
"exports": {
"import": "./lib/breakpad.js",
"require": "./lib/breakpad.cjs"
},
"files": [
"lib/*"
],
"scripts": {
"prepublish": "babel lib/*.js --out-file-extension=.cjs --out-dir=lib/",
"format": "prettier --cache --write .",
"lint": "npm run check:eslint && npm run check:format",
"check:eslint": "eslint --cache .",
"check:format": "prettier --cache --check .",
"test": "ava && npm run lint",
"benchmark": "node benchmark/index.js"
},
"author": "Fedor Indutny <238531+indutny@users.noreply.github.com>",
"license": "MIT",
"keywords": [
"breakpad",
"symbols",
"dump_syms"
],
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/plugin-transform-modules-commonjs": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"ava": "^6.1.3",
"babel-plugin-add-import-extension": "^1.6.0",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-ava": "^15.0.1",
"prettier": "^3.3.2"
},
"dependencies": {
"@indutny/breakpad-parser-wasm": "^1.0.3"
}
}