-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 927 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 927 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
{
"name": "profile-log-visualizer",
"version": "@PROJECT_VERSION@",
"description": "Sharemind profile log visualizer",
"main": "app/analyser.js",
"author": "n0n",
"license": "MIT",
"repository": "https://github.com/sharemind-sdk/profile_log_visualizer",
"dependencies": {
"JSONStream": "^1.3.5",
"async": "^2.6.2",
"byline-interleave": "^1.1.2",
"electron": "^4.1.3",
"line-by-line": "^0.1.6",
"minimist": "^1.2.0",
"tree-traversal": "^1.1.1"
},
"devDependencies": {
"gulp": "^4.0.0",
"gulp-less": "^4.0.1",
"electron-packager": "^12.2.0",
"pkg": "^3.0.6"
},
"scripts": {
"package-gui": "electron-packager . @PROJECT_GUI_BIN@ --platform=@PROJECT_PLATFORM@ --arch=@PROJECT_ARCH@ --asar",
"package-cli": "pkg app/cli.js --max-old-space-size=4096 --targets=node@PROJECT_NODEJS_VERSION@-@PROJECT_PLATFORM@-@PROJECT_ARCH@ --output=@PROJECT_CLI_BIN@"
}
}