-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "mac-windows",
"version": "1.0.0",
"description": "Provide information about Application Windows running and activate and Application.",
"main": "index.js",
"scripts": {
"build-activate-window": "swift build -c release --package-path swift/ActivateWindow && cp swift/ActivateWindow/.build/release/activate-window scripts/ActivateWindow",
"build-mac-windows": "swift build -c release --package-path swift/MacWindows && cp swift/MacWindows/.build/release/mac-windows scripts/MacWindows",
"start": "node index.js",
"build": "npm run build-activate-window && npm run build-mac-windows",
"test": "xo"
},
"os": [
"darwin",
"!win32",
"!linux"
],
"files": [
"index.js",
"scripts"
],
"keywords": [
"Mac",
"Windows",
"Applications",
"Dimensions",
"Position",
"Activate"
],
"author": "George Karagkiaouris",
"homepage": "https://github.com/karaggeorge/mac-windows",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/karaggeorge/mac-windows.git"
},
"bugs": {
"url": "https://github.com/karaggeorge/mac-windows/issues"
},
"devDependencies": {
"xo": "^0.20.3"
},
"xo": {
"space": 2
}
}