-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
executable file
·110 lines (110 loc) · 2.94 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
{
"name": "SafexWallet",
"description": "Safex Community Wallet",
"version": "v0.0.8",
"homepage": "https://safex.io",
"repository": {
"type": "git",
"url": "git://github.com/safex/safex_wallet.git"
},
"author": {
"name": "Safex Developers",
"url": "https://safex.io",
"email": "team@safex.io"
},
"maintainers": [
{
"name": "Daniel Dabek",
"url": "https://github.com/ddabek",
"email": "daniel@safex.io"
}
],
"license": "MIT",
"bugs": "https://github.com/safex/safex_wallet/issues",
"keywords": [
"safex cash",
"safex token",
"wallet",
"bitcoin",
"blockchain",
"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-winstaller": "^2.6.3",
"foreman": "^2.0.0",
"react-scripts": "^0.8.5"
},
"dependencies": {
"axios": "^0.16.2",
"binstring": "^0.2.1",
"bitcoinjs-lib": "^4.0.1",
"bitcore-lib": "^0.14.0",
"bs58": "^4.0.1",
"electron-context-menu": "^0.9.1",
"qrcode.react": "^0.7.1",
"react": "^15.6.2",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^15.6.2",
"react-file-download": "^0.3.4",
"react-file-input": "^0.2.5",
"react-number-format": "^2.0.3",
"react-router": "^3.2.1",
"safe-buffer": "^5.1.1",
"safex-addressjs": "git+https://github.com/safex/safex_addressjs.git"
},
"main": "src/electron-wallet.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron": "electron .",
"dev": "nf 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 --ia32",
"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 --ia32"
},
"build": {
"appId": "com.electron.safex_wallet",
"extends": null,
"files": [
"**/*",
"build/*.*",
"build/css/*.*",
"build/fonts/*.*",
"build/images/*.*",
"build/images/migration/*.*",
"build/static/css/*.*",
"build/static/js/*.*"
],
"mac": {
"category": "public.app-category.business",
"icon": "public/images/icons/wallet-icon3.icns",
"type": "distribution",
"target": [
"dmg"
]
},
"win": {
"target": "nsis",
"icon": "public/images/icons/wallet-icon3.ico",
"certificateFile": "../../../safexDevelopersCertificate.p12",
"certificatePassword": ""
},
"linux": {
"target": [
"deb",
"rpm"
],
"category": "Utility",
"icon": "public/images/icons/"
}
}
}