-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.22 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.22 KB
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
{
"name": "csmm-cli",
"description": "A mod manager for Cities: Skylines",
"version": "0.6.1",
"author": "Saksham Kumar",
"bin": {
"csmm": "./bin/run"
},
"bugs": "https://github.com/Kumar-Saksham/CSMM-CLI/issues",
"dependencies": {
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.14.0",
"@oclif/plugin-help": "^2.2.3",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"adm-zip": "^0.4.14",
"ansi-colors": "^4.1.1",
"cli-table": "^0.3.1",
"conf": "^6.2.3",
"enquirer": "^2.3.4",
"extract-zip": "^2.0.0",
"figures": "^3.2.0",
"fs-extra": "^9.0.0",
"got": "^10.7.0",
"log-update": "^4.0.0",
"moment": "^2.24.0",
"pretty-time": "^1.1.0",
"puppeteer": "^2.1.1",
"sinon": "^9.0.2",
"string-length": "^4.0.1",
"term-size": "^2.2.0",
"uuid": "^7.0.3",
"why-is-node-running": "^2.1.2"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1.2.5",
"chai": "^4.2.0",
"globby": "^10.0.2",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"rewiremock": "^3.13.9"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/Kumar-Saksham/CSMM-CLI",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "csmm",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available"
],
"warn-if-update-available": {
"timeoutInDays": 3,
"message": "<%= config.name %> update available from <%= chalk.greenBright(config.version) %> to <%= chalk.greenBright(latest) %>.\nUse: <%= chalk.yellow('npm install -g csmm-cli') %> to update."
},
"hooks": {
"prerun": [
"./src/hooks/prerun/parseUserConfig"
],
"cleanup": [
"./src/hooks/cleanup/cleanPacked",
"./src/hooks/cleanup/cleanUnpacked"
]
}
},
"repository": "Kumar-Saksham/CSMM-CLI",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"prepack": "oclif-dev manifest",
"test": "nyc mocha \"test/**/*.test.js\"",
"version": "oclif-dev readme && git add README.md"
}
}