-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.8 KB
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
{
"name": "livetracker",
"productName": "LiveTracker",
"version": "0.1.0",
"description": "Program to show live LOL Matches statistics",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "flow-remove-types ./ -d lib/",
"flow": "flow",
"package-mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --icon=assets/icons/mac/icon.icns --prune=true --out=release-builds",
"package-win": "electron-packager . LiveTracker --overwrite --asar=true --platform=win32 --arch=ia32 --icon=assets/icons/win/icon.ico --prune=true --out=release-builds --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName=\"LiveTracker\"",
"package-linux": "electron-packager . LiveTracker --overwrite --asar=true --platform=linux --arch=x64 --icon=assets/icons/png/icon.png --prune=true --out=release-builds",
"create-installer-win": "node installers/windows/createinstaller.js",
"handlebars": "handlebars js/templates/ -f js/templates/templates.js",
"test-livetracker": "echo 'LiveTracker working'",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rafaeelaudibert/LiveTracker.git"
},
"author": "Rafael Audibert",
"license": "MIT",
"dependencies": {
"about-window": "^1.13.0",
"electron": "^8.3.0",
"electron-json-storage": "^4.0.2",
"electron-rebuild": "^1.8.5",
"jquery": "^3.5.0",
"kayn": "^0.10.0",
"materialize-css": "^0.100.2",
"node-notifier": "^8.0.1",
"node-sass": "^4.13.1",
"handlebars": "^4.7.7",
"sass": "^1.22.1",
"snyk": "^1.518.0"
},
"devDependencies": {
"electron-packager": "^10.1.2",
"flow-bin": "^0.69.0",
"flow-remove-types": "^1.2.3"
},
"snyk": true
}