-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.84 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@bugsplat/source-mapper",
"version": "2.0.1",
"main": "./dist/lib/index.js",
"bin": {
"source-mapper": "./dist/bin/index.js"
},
"files": [
"dist"
],
"scripts": {
"test": "ts-node node_modules/jasmine/bin/jasmine --config=spec/support/jasmine.json",
"test:teamcity": "ts-node node_modules/jasmine/bin/jasmine --config=spec/support/jasmine.teamcity.json",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"cmd": "ts-node bin/index.ts",
"prebuild": "rimraf dist",
"build": "tsc",
"prepkg": "npm run build",
"pkg": "npx pkg -C -o ./pkg/source-mapper -t node18-macos-x64,node18-linux-x64,node18-win-x64 ./dist/bin/index.js",
"release": "npm run build && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BugSplat-Git/source-mapper"
},
"license": "MIT",
"private": false,
"keywords": [
"demangle",
"uglified",
"minified",
"javascript",
"js",
"typescript",
"ts",
"webpack",
"call",
"stack",
"trace",
"frame",
"convert",
"converter",
"exception",
"error",
"crash",
"report",
"reporting",
"bugsplat"
],
"dependencies": {
"clipboardy": "^2.3.0",
"fs-extra": "^11.1.1",
"lodash": "^4.17.21",
"source-map": "^0.7.4",
"stacktrace-parser": "^0.1.10"
},
"devDependencies": {
"@types/jasmine": "^4.3.5",
"@types/lodash": "^4.14.197",
"@types/node": "^20.5.6",
"@types/source-map": "^0.5.7",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.53.0",
"eslint-plugin-jsdoc": "^46.9.0",
"jasmine": "^5.1.0",
"jasmine-reporters": "^2.5.2",
"pkg": "^5.8.1",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}