-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.45 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
{
"name": "@creeppork/magma",
"description": "Magma is a CLI tool for Arma 3 server mod managment that works both on Windows and Linux.",
"version": "3.0.0-beta.9",
"author": "CreepPork",
"bin": {
"magma": "./bin/run"
},
"bugs": "https://github.com/CreepPork/Magma/issues",
"dependencies": {
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.15.1",
"@oclif/plugin-help": "^2.2.3",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"@sentry/node": "^5.17.0",
"axios": "^0.19.2",
"chalk": "^3.0.0",
"cli-progress": "^3.7.0",
"cli-table": "^0.3.1",
"fs-extra": "^9.0.1",
"inquirer": "^7.1.0",
"klaw-sync": "^6.0.0",
"lodash": "^4.17.15",
"node-pty": "^0.9.0",
"ora": "^4.0.3",
"qs": "^6.9.3",
"tslib": "^1.11.1"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@types/cli-progress": "^3.4.2",
"@types/cli-table": "^0.3.0",
"@types/fs-extra": "^8.1.0",
"@types/inquirer": "^6.5.0",
"@types/jest": "^25.2.1",
"@types/klaw-sync": "^6.0.0",
"@types/lodash": "^4.14.150",
"@types/node": "^14.0.11",
"@types/qs": "^6.9.1",
"jest": "^25.4.0",
"nock": "^12.0.3",
"ts-jest": "^25.4.0",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/CreepPork/Magma",
"keywords": [
"arma3",
"arma",
"cli",
"oclif",
"updater",
"linuxgsm",
"windows",
"linux",
"magma"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "magma",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available"
],
"warn-if-update-available": {
"timeoutInDays": 7,
"message": "<%= config.name %> update available from <%= chalk.greenBright(config.version) %> to <%= chalk.greenBright(latest) %>."
}
},
"repository": "CreepPork/Magma",
"scripts": {
"build": "tsc -b",
"postpack": "rm -f oclif.manifest.json",
"posttest": "tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "./node_modules/.bin/jest",
"version": "oclif-dev readme && git add README.md",
"watch": "tsc -b --watch"
},
"types": "lib/index.d.ts",
"magma": {
"latestConfigVersion": 3
}
}