-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·151 lines (151 loc) · 4.38 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "bench-wallet",
"version": "1.0.2",
"productName": "Bench Wallet",
"description": "Bench Wallet For All Bench-Related Assets On The BenchPay Network.",
"main": "main.js",
"scripts": {
"postinstall": "cd client && npm install && npm run bundle && cd .. && electron-builder install-app-deps && npm run rebuild",
"rebuild": "electron-rebuild --force --module_dir . -w node-hid ",
"electron": "electron --version",
"start": "electron main.js -- --disableScreenshotProtection",
"live-reload": "cross-env LIVE_RELOAD=true electron main.js",
"pack": "build --dir",
"dist": "npm run dist:win && npm run dist:macos && npm run dist:linux && npm run dist:win32",
"dist-quick": "npm run dist:win && npm run dist:macos && npm run dist:linux",
"dist:win": "electron-builder --win",
"dist:win32": "electron-builder --win --ia32",
"dist:macos": "electron-builder --macos",
"dist:linux": "electron-builder --linux",
"test": "karma start test/karma.conf.js --single-run",
"test-app": "mocha --recursive ./test/e2e/scenarios",
"test-watch": "karma start test/karma.conf.js",
"eslint": "eslint \"**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/benchcore/bench-wallet.git"
},
"keywords": [
"BenchPay",
"BEX",
"Wallet",
"Bench Wallet"
],
"author": {
"name": "BenchPay Foundation, LLC.",
"email": "[email protected]",
"url": "https://github.com/benchcore"
},
"contributors": [
{
"name": "Guillaume Verbal",
"email": "[email protected]",
"url": "https://github.com/doweig"
},
{
"name": "Lucio Rubens",
"email": "[email protected]",
"url": "https://github.com/luciorubeens"
},
{
"name": "Juan A. Martín",
"email": "[email protected]",
"url": "https://github.com/j-a-m-l"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/benchcore/bench-wallet/issues"
},
"homepage": "https://github.com/benchcore/bench-wallet#readme",
"dependencies": {
"@destinationstransfers/ntp": "^1.1.0",
"about-window": "^1.11.0",
"async": "^2.5.0",
"bcorejs": "^0.4.1",
"bindings": "^1.3.0",
"csv-parse": "^2.0.0",
"electron-debug": "^2.0.0",
"electron-window-state": "^4.1.1",
"elemon": "^5.0.3",
"ledgerco": "github:ledgerhq/ledger-node-js-api#6cde5978b9d0a4922f0d33520b16cc2184559ebc",
"moment-range": "^3.1.0",
"moment-timezone": "^0.5.14",
"q": "^1.5.0"
},
"devDependencies": {
"angular-mocks": "^1.6.6",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"cross-env": "^5.0.5",
"devtron": "^1.4.0",
"electron": "^1.8.7",
"electron-builder": "^20.15.0",
"electron-rebuild": "^1.7.2",
"eslint": "^4.14.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"grunt": "~1.0.1",
"grunt-angular-gettext": "^2.3.6",
"grunt-contrib-jshint": "~1.1.0",
"grunt-contrib-nodeunit": "^2.0.0",
"grunt-contrib-uglify": "~3.1.0",
"karma": "^2.0.2",
"karma-babel-preprocessor": "^7.0.0",
"karma-coverage": "^1.1.1",
"karma-electron": "^5.2.1",
"karma-mocha": "^1.3.0",
"karma-sinon": "^1.0.5",
"karma-sinon-chai": "^1.3.3",
"mocha": "^5.2.0",
"node-hid": "^0.7.3",
"sinon": "^4.1.1",
"sinon-chai": "^2.14.0",
"spectron": "^3.7.2"
},
"build": {
"appId": "com.benchpay.wallet",
"protocols": {
"name": "BEX Protocol",
"schemes": [
"bex"
],
"role": "Viewer"
},
"mac": {
"category": "finance"
},
"win": {
"target": "nsis",
"icon": "build/icon.ico"
},
"linux": {
"description": "Desktop application for BenchPay's Blockchain. Easily manage all Bench-related assets from your Linux-based desktop.",
"target": [
"deb",
"tar.xz"
],
"desktop": {
"MimeType": "x-scheme-handler/bex;"
},
"category": "Network"
},
"deb": {
"synopsis": "Desktop application for BenchPay's Blockchain."
},
"dmg": {
"icon": "build/icon.icns"
},
"nsis": {
"perMachine": true,
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}