-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
89 lines (89 loc) · 2.39 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
{
"author": "quinton-ashley",
"bin": {
"cemu-no-gyro": "./app.js"
},
"bugs": {
"url": "https://github.com/quinton-ashley/cemu-no-gyro/issues"
},
"build": {
"appId": "com.qashto.bottlenose",
"copyright": "Copyright © 2018 Quinton Ashley",
"electronVersion": "5.0.5",
"electronDownload": {
"version": "5.0.5"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "zip",
"arch": [
"x64"
]
}
],
"publish": [
"github"
]
}
},
"dependencies": {
"await-spawn": "^2.1.2",
"bootstrap": "^4.1.3",
"contro": "^2.2.0",
"crc": "^3.5.0",
"delay": "^4.3.0",
"electron-builder": "^22.6.0",
"electron-pug": "^2.0.0",
"express": "^4.16.4",
"fs-extra": "^8.1.0",
"jquery": "^3.3.1",
"klaw": "^3.0.0",
"long": "^4.0.0",
"markdown-it": "^9.1.0",
"minimist": "^1.2.0",
"open": "^6.4.0",
"popper.js": "^1.14.4",
"tether": "^1.4.7",
"ws": "^7.1.2"
},
"description": "Maps the right stick to motion controls for Cemu.",
"devDependencies": {},
"entry point": "app.js",
"homepage": "https://github.com/quinton-ashley/cemu-no-gyro#readme",
"keywords": [
"gyro",
"cemuhook",
"cemu"
],
"license": "MIT",
"main": "app.js",
"name": "cemu-no-gyro",
"repository": {
"type": "git",
"url": "git+https://github.com/quinton-ashley/cemu-no-gyro.git"
},
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"up-outdated": "npm install --save $(npm outdated | cut -d ' ' -f -1 | sed '1d' | sed 's/$/@*/')",
"rebuild": "npm rebuild --runtime=electron --target=5.0.5 --disturl=https://atom.io/download/atom-shell --abi=64",
"pack": "electron-builder --dir",
"dist": "electron-builder -m && electron-builder -w && electron-builder -l",
"gh-publish": "electron-builder -m -l -w -p always",
"postinstall": "electron-builder install-app-deps | electron-rebuild",
"delete-tags": "git tag | xargs git tag -d",
"delete-tags-remote": "git tag -l | xargs -n 1 git push --delete origin",
"v": "npm version patch --force",
"version": "git add -A",
"postversion": "git push",
"V": "git push origin $npm_package_version && npm publish"
},
"version": "1.0.16"
}