This repository has been archived by the owner on Feb 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
117 lines (117 loc) · 2.96 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
{
"name": "grid",
"version": "1.6.2",
"description": "Ethereum Grid",
"main": "nano.js",
"homepage": "https://github.com/ethereum/grid",
"author": "Grid Team <[email protected]>",
"license": "ISC",
"repository": "https://github.com/ethereum/grid",
"scripts": {
"start": "yarn start:dev",
"start:dev": "cross-env NODE_ENV=development electron .",
"start:dev:verbose": "cross-env NODE_ENV=development DEBUG=geth-js electron .",
"start:prod": "cross-env NODE_ENV=production electron .",
"test:mocha": "cross-env NODE_ENV=test mocha ./test",
"test:e2e": "cross-env NODE_ENV=development ava ./test/e2e --verbose -s",
"test:integration:watch": "cross-env NODE_ENV=test mocha ./test/integration --watch",
"test:integration:parity": "cross-env NODE_ENV=test mocha ./test/integration/parity.test.js",
"test:integration:geth": "cross-env NODE_ENV=test mocha ./test/integration/geth.test.js",
"prepare-release": "node ./scripts/copyApp.js",
"dist": "yarn run prepare-release && electron-builder",
"release": "env-cmd .env yarn run dist"
},
"dependencies": {
"@philipplgh/electron-app-manager": "^0.56.0",
"auto-launch": "^5.0.5",
"debug": "^4.1.1",
"menubar": "^6.0.7",
"xterm": "^3.14.4"
},
"peerDependencies": {},
"devDependencies": {
"ava": "^1.4.1",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"electron": "6.0.9",
"electron-builder": "21.2.0",
"electron-rebuild": "^1.8.6",
"env-cmd": "^8.0.2",
"husky": "^1.3.1",
"lint-staged": "^8.1.3",
"mocha": "^5.2.0",
"prettier": "^1.16.4",
"ps-list": "^6.3.0",
"rimraf": "^2.6.3",
"spectron": "^5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,json,css}": [
"prettier --no-semi --single-quote --write",
"git add"
]
},
"build": {
"productName": "Grid",
"appId": "org.ethereum.grid",
"asar": false,
"files": [
"index.js",
"nano.js",
"electron-shell.js",
"electron-zip-support.js",
"preload.js",
"preload-webview.js",
"WindowManager.js",
"build/**/*.png",
"build/**/*.ico",
"ui/**/*",
"public/error.html",
"Menu.js",
"Config.js",
"Rpc.js",
"ethereum_clients/**/*.js",
"ethereum_clients/**/*.json",
"grid_apps/**/*.js",
"grid_apps/**/*.json",
"utils/**/*.js",
"*.asar",
"*.zip",
"shipped-grid-ui/**/*.zip"
],
"mac": {
"category": "public.app-category.productivity",
"target": [
"zip",
"dmg"
],
"darkModeSupport": true
},
"nsis": {
"createDesktopShortcut": "always"
},
"win": {
"target": [
"zip",
"nsis"
]
},
"linux": {
"target": [
"deb",
"rpm",
"snap",
"AppImage"
],
"category": "WebBrowser"
},
"directories": {
"output": "release"
}
}
}