forked from quinton-ashley/nostlan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
145 lines (145 loc) · 3.98 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
{
"author": "quinton-ashley",
"bin": {
"bottlenose": "./app.js"
},
"bugs": {
"url": "https://github.com/quinton-ashley/bottlenose/issues"
},
"build": {
"appId": "com.qashto.bottlenose",
"copyright": "Copyright © 2018 Quinton Ashley",
"electronVersion": "5.0.5",
"electronDownload": {
"version": "5.0.5"
},
"mac": {
"category": "public.app-category.game",
"target": [
{
"target": "zip",
"arch": [
"x64"
]
}
],
"publish": [
"github"
]
},
"linux": {
"category": "Utility",
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "zip",
"arch": [
"x64"
]
}
],
"publish": [
"github"
]
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "zip",
"arch": [
"x64"
]
}
],
"publish": [
"github"
]
}
},
"contributors": [
{
"name": "Quinton Ashley",
"email": "[email protected]"
}
],
"dependencies": {
"await-spawn": "^2.1.2",
"bootstrap": "^4.3.1",
"chrome-finder": "^1.0.5",
"circletype": "^2.3.0",
"contro": "^2.1.3",
"contro-ui": "^1.0.13",
"deep-extend": "^0.6.0",
"delay": "^4.3.0",
"diacritics": "^1.3.0",
"electron-pug": "^2.0.0",
"fs-extra": "^8.1.0",
"fuse.js": "^3.4.5",
"gca-js": "^1.0.2",
"gooder": "^1.0.4",
"jquery": "^3.4.1",
"klaw": "^3.0.0",
"markdown-it": "^9.1.0",
"material-design-icons-iconfont": "^5.0.1",
"moment": "^2.24.0",
"mousetrap": "^1.6.3",
"node-7z": "^1.1.1",
"open": "^6.4.0",
"popper.js": "^1.15.0",
"probe-image-size": "^4.1.1",
"pug": "^2.0.4",
"puppeteer-core": "^1.19.0",
"requisition": "^1.7.0",
"tether": "^1.4.7",
"three": "^0.107.0",
"yauzl-promise": "^2.1.3"
},
"description": "Bottlenose is a front-end for video game emulators, use it to install and auto-update texture packs!",
"devDependencies": {},
"entry point": "app.js",
"keywords": [
"app"
],
"license": "MIT",
"main": "app.js",
"maintainers": [
{
"name": "Quinton Ashley",
"email": "[email protected]"
}
],
"name": "bottlenose",
"repository": {
"type": "git",
"url": "git+https://github.com/quinton-ashley/bottlenose.git"
},
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"premiere": "O='{\"name\":\"'$npm_package_name'\",\"description\":\"'$npm_package_description'\",\"license_template\":\"'$npm_package_license'\"}' && echo \"${O}\" && curl -u $npm_package_author_name https://api.github.com/user/repos -d \"${O}\" && git init && git add -A && git commit -m $npm_package_version && git remote add origin 'https://github.com/'$npm_package_author_name'/'$npm_package_name'.git' && git pull origin master --allow-unrelated-histories --no-edit -q && git push --set-upstream origin master && git push && git push --tags",
"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.72"
}