forked from appium/appium-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
227 lines (227 loc) · 7.51 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
{
"name": "appium-desktop",
"version": "1.14.1",
"description": "Graphical interface for the Appium server, and an app inspector",
"repository": {
"type": "git",
"url": "git+https://github.com/appium/appium-desktop.git"
},
"author": {
"name": "Appium Developers",
"email": "",
"url": "https://github.com/appium"
},
"license": "APACHE2",
"bugs": {
"url": "https://github.com/appium/appium-desktop/issues"
},
"keywords": [
"appium"
],
"assetsPath": "assets",
"homepage": "https://github.com/appium/appium-desktop",
"main": "dist/main.js",
"scripts": {
"test": "run-s test:*",
"test:integration": "cross-env NODE_ENV=test mocha --reporter mocha-multi-reporters --reporter-options configFile=./test/mochareporters.json ./test/integration",
"test:unit": "cross-env NODE_ENV=test mocha --reporter mocha-multi-reporters --reporter-options configFile=./test/mochareporters.json ./test/unit/",
"test:lint": "eslint app/ test/",
"e2e": "cross-env FORCE_NO_WRONG_FOLDER=true NODE_ENV=test RUNNING_IN_SPECTRON=true mocha --reporter mocha-multi-reporters --reporter-options configFile=./test/mochareporters.json ./test/e2e",
"build": "run-s build:*",
"build:main": "cross-env NODE_ENV=production parcel build --target node --public-url . --out-dir ./dist --out-file main.js ./app/main.js",
"build:renderer": "cross-env NODE_ENV=production parcel build --no-content-hash --out-dir ./dist --target electron --public-url . ./app/renderer/index.html",
"watch": "concurrently \"npm run watch-main\" \"npm run watch-renderer\"",
"watch:main": "cross-env NODE_ENV=development parcel --target node --out-dir ./dist --out-file main.js ./app/main.js",
"watch:renderer": "cross-env NODE_ENV=development parcel --out-dir ./dist --target electron --public-url . ./app/renderer/index.html",
"start": "cross-env RUNNING_LOCALLY=true FORCE_NO_WRONG_FOLDER=true electron ./",
"clean": "rimraf dist/",
"watch-main": "cross-env NODE_ENV=development parcel --target node --out-dir ./dist --out-file main.js ./app/main.js",
"watch-renderer": "cross-env NODE_ENV=development parcel --out-dir ./dist --target electron --public-url . ./app/renderer/index.html",
"build-main-dev": "cross-env NODE_ENV=development parcel build --target node --out-dir ./dist --out-file main.js ./app/main.js",
"build-renderer-dev": "cross-env NODE_ENV=development parcel build --out-dir ./dist --target electron --public-url . ./app/renderer/index.html",
"start-dev": "cross-env RUNNING_LOCALLY=true FORCE_NO_WRONG_FOLDER=true NODE_ENV=development electron --inspect ./",
"dev": "cross-env NODE_ENV=development npm run build-main-dev && npm run build-renderer-dev && concurrently --kill-others \"npm run start-dev\" \"npm run watch:main\" \"npm run watch:renderer\" ",
"dev-wrong-folder": "cross-env WRONG_FOLDER=true npm run dev",
"postinstall": "node ./check-engines package.json package.json && rimraf node_modules/jimp/browser",
"postversion": "git pull --tags && git push && git push --tags",
"pre-commit": "npm run test:lint",
"pre-push": "npm test",
"crowdin-update": "node crowdin-update-resources.js",
"crowdin-sync": "node crowdin-sync-translations.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit",
"pre-push": "npm run pre-push"
}
},
"build": {
"productName": "Appium",
"appId": "io.appium.desktop",
"asar": false,
"directories": {
"output": "release"
},
"dmg": {
"artifactName": "${productName}-mac-${version}.${ext}",
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"files": [
"dist/",
"node_modules/**/*",
"main.js",
"main.js.map",
"package.json"
],
"win": {
"artifactName": "${productName}-windows-${version}.${ext}",
"target": "nsis",
"icon": "build/icon.ico"
},
"nsisWeb": {
"oneClick": false
},
"nsis": {
"oneClick": false
},
"linux": {
"artifactName": "${productName}-linux-${version}.${ext}",
"target": [
"AppImage"
],
"category": "Development"
},
"publish": {
"provider": "github",
"owner": "appium",
"vPrefixedTagName": true
}
},
"bin": {
"electron": "./node_modules/.bin/electron"
},
"dependencies": {
"@babel/polyfill": "^7.4.0",
"ansi-to-html": "~0.6.7",
"antd": "^3.18.1",
"appium": "1.14.1",
"appium-support": "^2.25.0",
"bluebird": "^3.5.5",
"connected-react-router": "^6.0.0",
"css-modules-require-hook": "^4.2.3",
"electron-debug": "^3.0.0",
"electron-log": "^3.0.1",
"electron-settings": "^2.2.4",
"electron-updater": "^4.1.2",
"fix-path": "^2.1.0",
"font-awesome": "4.x",
"format-json": "1.x",
"highlight.js": "9.x",
"history": "^4.7.2",
"i18next": "^17.0.3",
"i18next-node-fs-backend": "^2.1.1",
"lodash": "4.x",
"moment": "^2.20.1",
"postcss": "^7.0.4",
"prop-types": "^15.6.2",
"react": "^16.8.1",
"react-click-outside-component": "^1.1.1",
"react-dom": "^16.8.1",
"react-hot-loader": "^4.3.12",
"react-i18next": "^10.0.4",
"react-redux": "^7.0.0",
"react-router": "^5.0.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "2.x",
"request-promise": "^4.2.2",
"shell-env": "^3.0.0",
"source-map-support": "^0.5.0",
"teen_process": "^1.11.0",
"temp": "0.x",
"uuid": "3.x",
"wd": "^1.6.0",
"xpath": "0.0.27"
},
"devDependencies": {
"7zip": "0.0.6",
"@babel/core": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/register": "^7.4.0",
"appium-fake-driver": "^0.6.2",
"asar": "^2.0.0",
"asyncbox": "^2.5.3",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"check-engines": "^1.5.0",
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"devtron": "1.x",
"dir-compare": "^1.4.0",
"electron": "^5.0.6",
"electron-builder": "^21.1.0",
"electron-builder-lib": "^20.15.3",
"electron-devtools-installer": "^2.2.3",
"eslint": "^6.0.0",
"eslint-config-appium": "^4.0.1",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-mocha": "^6.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-native": "^3.6.0",
"eslint-plugin-shopify": "^30.0.0",
"express": "^4.16.2",
"greenkeeper-lockfile": "^1.15.1",
"husky": "^3.0.0",
"jquery": "^3.3.1",
"jsdom": "^15.0.0",
"less": "^2.7.3",
"mocha": "^6.0.0",
"mocha-junit-reporter": "^1.18.0",
"mocha-multi-reporters": "^1.1.7",
"node-libs-browser": "^2.1.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.10.3",
"parcel-plugin-asset-copier": "^1.0.0",
"postcss-modules": "^1.4.1",
"react-addons-test-utils": "^15.6.2",
"release": "^6.0.1",
"request": "^2.88.0",
"rimraf": "^2.6.2",
"run-s": "0.0.0",
"sinon": "^7.3.1",
"spectron": "^7.0.0",
"xmldom": "^0.1.27"
},
"devEngines": {
"node": ">=6.x",
"npm": ">=3.x"
},
"engines": {
"node": ">=10.x",
"npm": ">=5.x"
},
"greenkeeper": {
"ignore": [
"electron",
"less",
"electron-settings"
]
}
}