-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
executable file
·79 lines (79 loc) · 2.35 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
{
"name": "adb-util",
"productName": "ADB Util",
"version": "0.0.3",
"description": "An Electron application providing a GUI for common ADB operations",
"license": "Apache-2.0",
"repository": "nexenio/adb-util",
"author": {
"name": "Stephan Schultz",
"email": "stephan.schultz@nexenio.com",
"url": "https://nexenio.com"
},
"engines": {
"node": ">=4"
},
"electronVersion": "1.7.8",
"scripts": {
"test": "xo",
"start": "node starter.js --2nd",
"start-1st": "node starter.js",
"build": "npm run build-osx && npm run build-win",
"build-osx": "NODE_ENV=production webpack -p --config webpack.config.js && electron-packager . $npm_package_productName --overwrite --out=dist --ignore='^/dist$' --prune --asar --platform=darwin --arch=x64 --version=$npm_package_electronVersion --icon=assets/icon.icns",
"build-win": "NODE_ENV=production webpack -p --config webpack.config.js && electron-packager . $npm_package_productName --overwrite --out=dist --ignore='^/dist$' --prune --asar --platform=win32 --arch=all --version=$npm_package_electronVersion --icon=assets/icon.ico"
},
"keywords": [
"adb",
"android",
"electron",
"webpack",
"react",
"electron-app"
],
"dependencies": {
"adbkit": "^2.11.0",
"electron-debug": "^1.4.0",
"electron-log": "^2.2.9",
"history": "^4.7.2",
"ip": "^1.1.5",
"object-assign": "^4.0.1",
"portscanner": "^2.1.1",
"react": "^15.6.1",
"react-desktop": "^0.3.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"titlecase": "^1.1.2"
},
"devDependencies": {
"babel-core": "^6.4.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.24.1",
"cross-spawn": "^5.1.0",
"css-loader": "^0.28.7",
"electron": "^1.7.8",
"electron-packager": "^9.1.0",
"electron-prebuilt": "^1.4.13",
"file-loader": "^0.11.2",
"json-loader": "^0.5.4",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"sleep": "^5.1.1",
"style-loader": "^0.17.0",
"url-loader": "^0.5.7",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2",
"xo": "^0.18.2"
},
"xo": {
"esnext": true,
"envs": [
"node",
"browser"
]
}
}