-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
72 lines (72 loc) · 2.27 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
{
"name": "bloc-electron-wallet",
"productName": "BLOC-Electron-Wallet",
"description": "BLOC GUI Wallet",
"version": "3.5.3",
"homepage": "https://github.com/furiousteam/BLOC-electron-wallet",
"repository": "https://github.com/furiousteam/BLOC-electron-wallet",
"main": "main.js",
"scripts": {
"start": "electron .",
"debug": "electron . debug",
"dev": "electron . dev",
"dist-win": "./node_modules/.bin/electron-builder --x64 --win -c.extraResources=./bin/win/BLOC-service.exe",
"dist-lin": "./node_modules/.bin/electron-builder --x64 --linux -c.extraResources=./bin/lin/BLOC-service",
"dist-mac": "./node_modules/.bin/electron-builder --x64 --mac -c.extraResources=./bin/osx/BLOC-service"
},
"keywords": [],
"author": "Rixombea, Macroshock, TurtleCoin Developers",
"license": "ISC",
"devDependencies": {
"devtron": "^1.4.0",
"electron": "^3.1.1",
"electron-builder": "^20.38.5",
"jshint": "^2.9.7"
},
"dependencies": {
"@trodi/electron-splashscreen": "^0.3.4",
"csv-writer": "^1.2.0",
"electron-log": "^2.2.17",
"electron-store": "^2.0.0",
"qr-image": "^3.2.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"semver": "^5.6.0",
"chart.js": "^2.7.3"
},
"build": {
"appId": "money.bloc.bloc-electron-wallet",
"copyright": "Copyright (c) 2018 Rixombea, Macroshock, TurtleCoin Developers, BLOC Developers",
"directories": {
"app": ".",
"output": "dist",
"buildResources": "build"
},
"linux": {
"artifactName": "${productName}-v${version}-${os}.${ext}",
"target": [
"AppImage"
],
"maintainer": "furiousteam (@furiousteam)",
"category": "Office",
"vendor": "BLOC",
"synopsis": "BLOC GUI Wallet"
},
"win": {
"target": "nsis",
"publisherName": "BLOC"
},
"nsis": {
"artifactName": "${productName}-v${version}-${os}-${arch}-setup.${ext}",
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true
},
"mac": {
"artifactName": "${productName}-v${version}-${os}-${arch}.${ext}",
"category": "public.app-category.business",
"target": "zip"
}
},
"postinstall": "./node_modules/.bin/electron-builder install-app-deps"
}