-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 772 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 772 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
{
"name": "call-stack-parser",
"version": "1.0.1",
"description": "An electron app for parsing call stack according source-map files.",
"main": "main.js",
"scripts": {
"start": "electron .",
"package": "electron-packager ./ callStackParser --out ./build --app-version 1.0.0 --overwrite",
"dist": "cross-env HTTPS_PROXY=http://192.168.1.203:1080 electron-builder --win --x64"
},
"repository": "https://github.com/wangtao0101/call-stack-parser",
"keywords": [],
"author": "wangtao0101",
"license": "MIT",
"devDependencies": {
"electron": "^2.0.0",
"electron-builder": "^20.28.1",
"electron-packager": "^12.1.0"
},
"dependencies": {
"cross-env": "^5.2.0",
"monaco-editor": "^0.14.2",
"source-map": "^0.7.3"
}
}