-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
76 lines (76 loc) · 2.14 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
{
"name": "greenaddress-electronSEDREPLACED_NETWORK",
"productName": "GreenAddress WalletSEDREPLACED_NAME",
"description": "GreenAddress Bitcoin WalletSEDREPLACED_NAME",
"version": "0.1.03",
"author": "GreenAddress <info@greenaddress.it>",
"copyright": "© 2018, Blockstream corporation.",
"homepage": "https://greenaddress.it",
"license": "MIT",
"main": "app/background.js",
"build": {
"appId": "com.blockstream.greenaddress-electronSEDREPLACED_NETWORK",
"files": [
"app/**/*",
"node_modules/**/*",
"package.json"
],
"linux": {
"target": [
"AppImage"
],
"desktop": {
"MimeType": "x-scheme-handler/bitcoin;"
}
},
"protocols": {
"name": "Bitcoin URL",
"schemes": [
"bitcoin"
]
},
"publish": null
},
"scripts": {
"postinstall": "install-app-deps",
"build": "gulp build",
"prerelease": "gulp build --env=production",
"release": "build",
"predevelopment": "gulp build --env=development",
"development": "build",
"start": "gulp start",
"pretest": "gulp build-unit --env=test",
"test": "electron-mocha app/specs.js.autogenerated --renderer --require source-map-support/register",
"coverage": "npm test -- -R scripts/istanbul-reporter",
"pree2e": "gulp build-e2e --env=test",
"e2e": "mocha app/e2e.js.autogenerated --require source-map-support/register"
},
"dependencies": {
"electron-context-menu": "^0.10.0",
"fs-jetpack": "^2.1.0",
"node-hid": "^0.7.3",
"wallyjs": "file:webfiles/libwally-core/src/wrap_js"
},
"devDependencies": {
"chai": "^4.1.2",
"electron": "2.0.8",
"electron-builder": "20.28.2",
"electron-mocha": "^6.0.4",
"gulp": "^3.9.1",
"gulp-batch": "^1.0.5",
"gulp-less": "^4.0.1",
"gulp-plumber": "^1.1.0",
"gulp-util": "^3.0.8",
"gulp-watch": "^5.0.1",
"istanbul": "^0.4.5",
"minimist": "^1.2.0",
"mocha": "^5.0.0",
"rollup": "^0.65.0",
"rollup-plugin-istanbul": "^2.0.0",
"source-map-support": "^0.5.9",
"spectron": "^3.6.0"
},
"optionalDependencies": {
"windows-foreground-love": "^0.1.0"
}
}