-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·113 lines (113 loc) · 3.17 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "mcafeesafexminer",
"description": "McAfee 1 Click Mining App Blockchain proof of work Safex Cash",
"version": "v2.0.0",
"homepage": ".",
"repository": {
"type": "git",
"url": "https://github.com/balkaneum/McAfeeMiner"
},
"author": {
"name": "Safex Developers",
"url": "https://safex.io",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Uroš Mitrović",
"url": "https://github.com/Kiu0612",
"email": "[email protected]"
}
],
"license": "LicenseRef-LICENSE",
"bugs": "https://github.com/balkaneum/McAfeeMiner/issues",
"keywords": [
"safex cash",
"safex mining app",
"bitcoin",
"blockchain",
"proof of work",
"electron"
],
"devDependencies": {
"electron": "^1.7.11",
"electron-builder": "^19.41.0",
"electron-installer-dmg": "^0.2.1",
"electron-packager": "^8.7.2",
"electron-react-devtools": "^0.5.3",
"electron-rebuild": "^1.8.2",
"electron-winstaller": "^2.6.3",
"foreman": "^3.0.0",
"react-scripts": "^2.1.3"
},
"dependencies": {
"axios": "^0.16.2",
"electron-context-menu": "^0.9.1",
"js-file-download": "^0.4.4",
"node-xmrig-cpu": "git+https://github.com/atanmarko/node-xmrig.git",
"react": "^15.6.2",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^15.6.2",
"react-tooltip": "^3.10.0",
"safex-addressjs": "git+https://github.com/safex/safex_addressjs.git",
"safex-nodejs-libwallet": "git+https://github.com/safex/safex-nodejs-libwallet.git"
},
"main": "src/electron-starter.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron": "electron .",
"dev": "nf -e .env.foreman start -p 3000",
"dist": "build",
"make-mac-installer": "npm run build && electron-builder build -m",
"make-win-installer": "npm run build && electron-builder build -w --x64",
"make-linux-installer": "npm run build && electron-builder build -l",
"make-all-installers": "npm run build && electron-builder build -ml && electron-builder build -w --x64"
},
"build": {
"appId": "com.electron.mcafee_safex_click_mining_app",
"npmRebuild": true,
"extends": null,
"files": [
"**/*",
"build/*.*",
"build/css/*.*",
"build/fonts/*.*",
"build/images/*.*",
"build/static/css/*.*",
"build/static/js/*.*",
"!node_modules/safex-nodejs-libwallet/boost*",
"!node_modules/safex-nodejs-libwallet/safexcore",
"!node_modules/safex-nodejs-libwallet/deps",
"!node_modules/safex-nodejs-libwallet/build"
],
"mac": {
"category": "public.app-category.business",
"icon": "public/images/icons/icon4.icns",
"type": "distribution",
"target": [
"dmg"
]
},
"win": {
"target": "nsis",
"icon": "public/images/icons/icon4.ico"
},
"linux": {
"target": [
"deb",
"rpm"
],
"category": "Utility",
"icon": "public/images/icons/icon4.png"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}