-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 2.77 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
{
"name": "forumone-cli",
"description": "CLI wrapper for Docker-based projects",
"version": "1.7.1",
"author": "Forum One",
"bin": {
"f1": "./bin/run"
},
"bugs": "https://github.com/forumone/forumone-cli/issues",
"dependencies": {
"@oclif/command": "^1.5.8",
"@oclif/config": "^1.10.4",
"@oclif/plugin-help": "^2.1.4",
"@oclif/plugin-warn-if-update-available": "~1.7.0",
"@octokit/rest": "~16.16.3",
"ajv": "~6.6.2",
"cosmiconfig": "~5.0.7",
"dockerode": "~2.5.8",
"env-paths": "~2.0.0",
"execa": "~1.0.0",
"find-up": "~3.0.0",
"globby": "^8.0.2",
"listr": "~0.14.3",
"make-dir": "~2.0.0",
"merge2": "~1.2.3",
"node-fetch": "~2.6.1",
"semver": "~6.3.0",
"split2": "~3.1.0",
"temp-write": "~4.0.0",
"tslib": "^1.14.0",
"valid-filename": "~2.0.1",
"which": "~1.3.1"
},
"devDependencies": {
"@oclif/dev-cli": "^1.21.0",
"@types/chai": "^4.2.13",
"@types/cosmiconfig": "~5.0.3",
"@types/dockerode": "^2.5.34",
"@types/env-paths": "~1.0.2",
"@types/execa": "~0.9.0",
"@types/find-up": "~2.1.1",
"@types/json-schema": "^7.0.6",
"@types/listr": "^0.14.2",
"@types/make-dir": "~1.0.3",
"@types/merge2": "~1.1.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.17.37",
"@types/node-fetch": "^2.5.7",
"@types/semver": "^6.2.2",
"@types/split2": "~2.1.6",
"@types/which": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-implicit-dependencies": "^1.0.4",
"eslint-plugin-oclif": "^0.1.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "~1.15.3",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/forumone/forumone-cli",
"keywords": [
"oclif"
],
"license": "GPL-3.0-or-later",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "f1",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available"
],
"topics": {
"cap": {
"description": "interact with capistrano"
},
"theme": {
"description": "manage gesso cli tasks"
}
}
},
"repository": "forumone/forumone-cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint \"src/**\" -f stylish --ext .ts",
"prepack": "rm -rf lib tsconfig.tsbuildinfo && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "tsc --noEmit -p .",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}