-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 1.99 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
{
"name": "BlitzModder",
"version": "1.7.3",
"description": "Mod manager for World of Tanks Blitz(PC)",
"main": "bin/core/core.js",
"scripts": {
"teststart": "node_modules\\electron\\dist\\electron.exe bin",
"start": "npm run start:win64",
"start:win32": "build -w --ia32 --dir && .\\dist\\win-ia32-unpacked\\BlitzModder",
"start:win64": "build -w --x64 --dir && .\\dist\\win-unpacked\\BlitzModder",
"start:mac": "build -m --dir && ./dist/mac/BlitzModder",
"build": "gulp",
"pack": "npm run pack:win && npm run pack:mac",
"pack:win": "npm run build && build -w --ia32 --x64 -p never",
"pack:mac": "npm run build && build -m -p never"
},
"author": "S(FV293b)",
"repository": {
"type": "git",
"url": "http://github.com/BlitzModder/BMPC.git"
},
"homepage": "https://github.com/BlitzModder/BMPC/wiki",
"license": "MIT",
"dependencies": {
"bootstrap": "^4.0.0",
"fs-extra": "^5.0.0",
"fstream": "^1.0.11",
"jquery": "^3.3.1",
"jszip": "^3.1.5",
"plist": "^2.1.0",
"popper.js": "^1.12.9",
"readdirp": "^2.1.0",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"semver": "^5.5.0",
"unzipper": "^0.8.11",
"vue": "^2.5.13"
},
"devDependencies": {
"ajv": "^6.2.1",
"coffeescript": "^2.2.2",
"del": "^3.0.0",
"electron": "1.8.3",
"electron-builder": "^20.3.1",
"gulp": "^3.9.1",
"gulp-changed": "^3.2.0",
"gulp-coffeescript": "0.0.15",
"gulp-haml": "^1.0.1",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.0",
"gulp-sass": "^3.1.0",
"gulp-yaml": "^1.0.1"
},
"build": {
"appId": "xyz.4na.29314.BlitzModderPC",
"copyright": "(C) S(FV293b) 2016",
"electronVersion": "1.8.3",
"mac": {
"category": "public.app-category.games",
"target": [
"zip",
"dmg"
]
},
"win": {
"target": "zip"
},
"directories": {
"buildResources": "resources",
"output": "dist",
"app": "bin"
}
}
}