-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
113 lines (113 loc) · 3.33 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": "coinapp",
"version": "0.0.34",
"description": "A Simple Cryptocurrency Wallet for Ethereum, ERC20 Tokens, Bitcoin and Litecoin",
"author": "Hunter Long <[email protected]>",
"main": "main.js",
"scripts": {
"test": "/bin/bash -c ./.travis/travis-test.sh",
"start": "electron .",
"pack": "electron-webpack",
"dist": "electron-builder -wml",
"compile": "rollup main.js --o bundle.js -f umd --name \"coinapp\"",
"rollup": "NODE_ENV=development rollup -c --fix",
"release": "electron-builder -ml -p always",
"release-win": "electron-builder -w -p always",
"test-all": "docker-compose up -d && sleep 20 && curl -X POST -H 'Content-Type: application/json' -d @test/newcoin.json http://localhost:8545 && export NODE_ALL='true' >> /dev/null && mocha && docker-compose down",
"fetch-list": "/bin/bash -c ./.travis/fetch-list.sh",
"icon": "./.travis/notification-icon.sh -i ./build/icon.png -b com.coinapp",
"dev": "electron-webpack dev",
"postinstall": "electron-rebuild -f"
},
"build": {
"appId": "com.coinapp",
"productName": "CoinApp",
"files": [
"main.js",
"app/",
"node_modules/",
"package.json"
],
"dmg": {
"contents": [
{
"x": 210,
"y": 260
},
{
"x": 490,
"y": 260,
"type": "link",
"path": "/Applications"
}
]
},
"mac": {
"publish": [
"github"
],
"category": "financial"
},
"linux": {
"publish": [
"github"
],
"target": [
"deb"
]
},
"win": {
"publish": [
"github"
],
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
},
{
"target": "portable",
"arch": [
"x64",
"ia32"
]
}
]
}
},
"repository": "https://github.com/coinapp-io/desktop",
"keywords": [
"coinapp"
],
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"electron": "^2.0.6",
"electron-builder": "^20.26.1",
"electron-rebuild": "^1.8.2",
"mocha": "^5.2.0",
"spectron": "^3.8.0"
},
"dependencies": {
"bignumber.js": "^7.2.1",
"bip39": "^2.5.0",
"bitcoin-util-fee": "0.0.6",
"bitcoinjs-lib": "^4.0.1",
"clipboardy": "^1.2.3",
"electron-default-menu": "^1.0.1",
"electron-log": "^2.2.16",
"electron-store": "^2.0.0",
"electron-updater": "^3.0.3",
"ethereumjs-wallet": "^0.6.1",
"ethers": "^3.0.26",
"jquery": "^3.3.1",
"ledgerco": "^1.2.1",
"node-hid": "^0.7.3",
"node-notifier": "^5.2.1",
"qrcode": "^1.2.2"
}
}