forked from RobChiocchio/BL2-MP-Mods
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.54 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
{
"name": "unlimited-coop-patcher",
"version": "1.0.0",
"description": "Robeth's Borderlands Unlimited COOP Mod",
"main": "app/main.js",
"scripts": {
"start": "electron .",
"prepack": "license-checker --direct --relativeLicensePath --json --out src/json/licenses.json",
"pack": "electron-builder --dir",
"dist": "electron-builder --publish never"
},
"build": {
"extraResources": [
"bin/**",
"CoopPatch/**"
],
"icon": "app/icon.png",
"win": {
"requestedExecutionLevel": "highestAvailable"
},
"publish": {
"provider": "github",
"vPrefixedTagName": "true"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobethX/BL2-MP-Mods.git"
},
"keywords": [
"Borderlands",
"mod"
],
"author": "Rob Chiocchio",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"electron": "^3.0.10",
"electron-builder": "^20.36.2",
"eslint": "^5.13.0",
"install": "^0.12.2",
"license-checker": "^25.0.1",
"meow": "^5.0.0",
"mocha": "^5.2.0"
},
"bugs": {
"url": "https://github.com/RobethX/BL2-MP-Mods/issues"
},
"homepage": "https://steamcommunity.com/sharedfiles/filedetails/?id=1151711689",
"dependencies": {
"@sentry/electron": "0.14.0",
"bluebird": "^3.5.3",
"electron-log": "^2.2.17",
"electron-preferences": "^1.2.0",
"electron-updater": "^4.0.4",
"fs-jetpack": "^2.2.1",
"json5": "^2.1.0",
"lodash": "^4.17.11",
"logrocket": "^0.6.17",
"universal-analytics": "^0.4.20"
}
}