This repository has been archived by the owner on Feb 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 413
/
package.testnet.json
99 lines (99 loc) · 2.77 KB
/
package.testnet.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
{
"name": "iota-testnet",
"productName": "IOTA Wallet Testnet",
"description": "IOTA Wallet Testnet",
"version": "2.5.7-testnet",
"license": "GPL-3.0",
"main": "app/js/main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps && node install-deps.js && cd app && bower install && cd ../ui && bower install",
"start": "export NODE_ENV=development || set NODE_ENV=development && electron app/js/main.js",
"precompile": "rimraf out/* && node install-deps.js",
"compile": "export CSC_IDENTITY_AUTO_DISCOVERY=false && electron-builder --win --mac --linux --x64 --ia32",
"compile:lin": "electron-builder --linux --x64 --ia32",
"compile:mac": "export CSC_IDENTITY_AUTO_DISCOVERY=false && electron-builder --mac --x64",
"compile:win": "electron-builder --win --x64 --ia32",
"compile:win64": "electron-builder --win --x64",
"compile:win32": "electron-builder --win --x32",
"prepublish": "rimraf out/*",
"publish": "export CSC_IDENTITY_AUTO_DISCOVERY=false && electron-builder --win --mac --linux --x64 --ia32 --publish always",
"publish:lin": "electron-builder --linux --x64 --ia32 --publish always",
"publish:mac": "export CSC_IDENTITY_AUTO_DISCOVERY=false && electron-builder --mac --x64 --publish always",
"publish:win": "electron-builder --win --x64 --ia32 --publish always"
},
"author": "IOTA Foundation <contact@iota.org>",
"homepage": "https://www.iota.org",
"repository": {
"type": "git",
"url": "https://github.com/iotaledger/wallet"
},
"dependencies": {
"curl.lib.js": "^1.0.22",
"ffi": "^2.2.0",
"fs-extra": "^1.0.0",
"glob": "^7.1.2",
"i18next": "^8.4.2",
"i18next-sync-fs-backend": "^0.1.0",
"pidusage": "^1.1.5"
},
"devDependencies": {
"electron": "1.7.11",
"electron-builder": "^19.13.0",
"follow-redirects": "^1.2.4",
"rimraf": "^2.6.1"
},
"build": {
"directories": {
"buildResources": "build",
"output": "out"
},
"publish": [
"github"
],
"appId": "com.iotatoken.wallet-testnet",
"extraResources": [
"iri/iri-testnet.jar",
"ccurl/**/*",
"ui/**/*",
"locales/**/*"
],
"protocols": [
{
"name": "IOTA URL Scheme",
"schemes": [
"iota"
]
}
],
"dmg": {
"iconSize": 125,
"contents": [
{
"x": 235,
"y": 290,
"type": "link",
"path": "/Applications"
},
{
"x": 235,
"y": 20,
"type": "file"
}
]
},
"win": {
"target": "nsis"
},
"linux": {
"target": [
"AppImage",
"deb",
"rpm",
"tar.gz"
]
},
"mac": {
"category": "public.app-category.developer-tools"
}
}
}