forked from appium/appium-desktop
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
201 lines (201 loc) · 6.53 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
{
"name": "appium-desktop",
"version": "1.4.0",
"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"
],
"homepage": "https://github.com/chentsulin/electron-react-boilerplate#readme",
"main": "main.js",
"scripts": {
"test": "npm run unit-test",
"e2e": "cross-env FORCE_NO_WRONG_FOLDER=true mocha --timeout 600000 --compilers js:babel-core/register --require ./node_modules/babel-polyfill/dist/polyfill.min.js ./test/e2e",
"integration": "mocha --timeout 600000 --compilers js:babel-core/register --require ./node_modules/babel-polyfill/dist/polyfill.min.js ./test/integration",
"unit-test": "mocha --compilers js:babel-core/register ./test/unit",
"test-all": "npm run unit-test && npm run integration && npm run e2e",
"lint": "eslint app test *.js",
"hot-server": "node -r ./node_modules/babel-register server.js --color",
"build-main": "cross-env NODE_ENV=production node -r ./node_modules/babel-register ./node_modules/webpack/bin/webpack --config webpack.config.electron.js --progress --profile --colors --color",
"build-renderer": "cross-env NODE_ENV=production node -r ./node_modules/babel-register ./node_modules/webpack/bin/webpack --config webpack.config.production.js --progress --profile --colors --color",
"build": "npm run build-main && npm run build-renderer",
"clean": "rimraf node_modules && npm install",
"start": "cross-env NODE_ENV=production electron ./",
"start-hot": "cross-env HOT=1 NODE_ENV=development electron -r ./node_modules/babel-register -r ./node_modules/babel-polyfill ./app/main/main.development --color",
"postinstall": "node node_modules/fbjs-scripts/node/check-dev-engines.js package.json",
"dev": "concurrently --kill-others \"npm run hot-server\" \"npm run start-hot\" --color",
"dev:wrong-folder": "cross-env WRONG_FOLDER=true npm run dev",
"dev-mock-update": "cross-env MOCK_AUTO_UPDATER=true npm run dev",
"dev-mock-failed-update": "cross-env MOCK_FAILED_UPDATE=true npm run dev-mock-update",
"package": "npm run build && build --publish never",
"package-win": "npm run build && build --win --x64",
"package-linux": "npm run build && build --linux",
"package-all": "npm run build && build -mwl",
"package-ci": "npm run clean && npm run build && build --dir && npm run test-all && build --publish onTagOrDraft",
"postversion": "git pull --tags && git push && git push --tags"
},
"build": {
"productName": "Appium",
"appId": "io.appium.desktop",
"asar": false,
"directories": {
"output": "release"
},
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"files": [
"dist/",
"node_modules/",
"app/renderer/index.html",
"app/renderer/images/",
"main.js",
"main.js.map",
"package.json"
],
"win": {
"target": [
"nsis"
]
},
"linux": {
"target": [
"AppImage"
],
"category": "Development"
},
"publish": {
"provider": "github",
"owner": "dpgraham",
"vPrefixedTagName": true
}
},
"bin": {
"electron": "./node_modules/.bin/electron"
},
"dependencies": {
"ansi-to-html": "0.5",
"antd": "2.10.1",
"appium": "1.7.2",
"appium-support": "^2.12.0",
"babel-core": "^6.26.0",
"bluebird": "^3.5.1",
"css-modules-require-hook": "^4.2.3",
"electron-debug": "^1.5.0",
"electron-log": "^1.3.0",
"electron-settings": "2.x",
"electron-updater": "^2.18.3",
"fix-path": "^2.1.0",
"font-awesome": "4.x",
"format-json": "1.x",
"highlight.js": "9.x",
"lodash": "4.x",
"moment": "^2.20.1",
"postcss": "^5.2.18",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-redux": "4.x",
"react-router": "^3.2.0",
"react-router-redux": "4.x",
"redux": "^3.7.2",
"redux-thunk": "2.x",
"request-promise": "^4.2.2",
"shell-env": "^0.3.0",
"source-map-support": "^0.5.0",
"teen_process": "^1.11.0",
"temp": "0.x",
"uuid": "3.x",
"wd": "^1.5.0",
"xpath": "0.0.24"
},
"devDependencies": {
"appium-fake-driver": "^0.3.0",
"asar": "^0.14.0",
"asyncbox": "^2.3.2",
"babel-core": "6.x",
"babel-eslint": "7.x",
"babel-loader": "6.x",
"babel-plugin-add-module-exports": "0.x",
"babel-plugin-dev-expression": "0.x",
"babel-plugin-transform-remove-console": "^6.8.5",
"babel-plugin-transform-remove-debugger": "^6.8.5",
"babel-plugin-webpack-loaders": "0.x",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "6.x",
"babel-preset-react": "6.x",
"babel-preset-react-hmre": "1.x",
"babel-preset-react-optimize": "1.x",
"babel-preset-stage-0": "6.x",
"babel-register": "^6.26.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"concurrently": "^3.5.1",
"cross-env": "3.x",
"css-loader": "^0.28.8",
"del": "2.x",
"devtron": "1.x",
"dir-compare": "^1.4.0",
"electron": "1.7.11",
"electron-builder": "^19.53.4",
"electron-devtools-installer": "^2.2.3",
"eslint": "3.x",
"eslint-config-appium": "1.x",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "3.x",
"eslint-plugin-mocha": "4.x",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "6.x",
"express": "^4.16.2",
"extract-text-webpack-plugin": "1.x",
"fbjs-scripts": "^0.8.1",
"file-loader": "0.x",
"image-webpack-loader": "^3.4.2",
"jquery": "^3.2.1",
"jsdom": "9.x",
"json-loader": "^0.5.7",
"minimist": "1.x",
"mocha": "^3.5.3",
"node-libs-browser": "^2.1.0",
"react-addons-test-utils": "^15.6.2",
"redux-logger": "2.x",
"request": "^2.83.0",
"rimraf": "^2.6.2",
"sinon": "^2.4.1",
"spectron": "^3.7.2",
"style-loader": "^0.19.1",
"webpack": "1.x",
"webpack-dev-middleware": "^1.12.2",
"webpack-hot-middleware": "^2.21.0",
"xmldom": "^0.1.27"
},
"devEngines": {
"node": ">=6.x",
"npm": ">=3.x"
}
}