-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.82 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
{
"name": "pandemicpulse",
"version": "1.1.0",
"description": "Pandemic Pulse infects your computer's resources at the rate of COVID-19 infections and deaths in your location.",
"main": "main.js",
"productName": "pandemicpulse",
"scripts": {
"start": "nodemon --watch * --exec 'electron .'",
"build-mac": "node_modules/electron-packager/bin/electron-packager.js . --overwrite --platform=darwin --arch=x64 --prune=true --icon=assets/images/macos-icon.icns --out=release-builds",
"build-win": "node_modules/electron-packager/bin/electron-packager.js . --overwrite --platform=win32 --arch=x64 --icon=assets/images/macos-icon.icns --prune=true --out=release-builds --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName=\"covid.exe\"",
"build-linux": "node_modules/electron-packager/bin/electron-packager.js . --overwrite --platform=linux --arch=x64 --prune=true --out=release-builds"
},
"build": {
"extraFiles": [
{
"from": "resources/${os}",
"to": "Resources/bin",
"filter": [
"**/*"
]
},
{
"from": "assets/",
"to": "assets/",
"filter": [
"**/*"
]
}
]
},
"repository": "https://github.com/jblinder/pandemic-pulse",
"keywords": [
"virus",
"art",
"coronavirus",
"covid"
],
"author": "Justin Blinder",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^9.0.4",
"electron-packager": "^14.2.1",
"nodemon": "^2.0.4"
},
"dependencies": {
"app-root-dir": "^1.0.2",
"app-root-path": "^3.0.0",
"csvtojson": "^2.0.10",
"jquery": "^3.5.1",
"jquery-sparkline": "^2.4.0",
"node-fetch": "^2.6.0",
"node-os-utils": "^1.3.0",
"node-schedule": "^1.3.2",
"popper.js": "^1.16.1",
"usa-states": "0.0.5"
}
}