-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
157 lines (157 loc) · 4.46 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "@digitaloptgroup/cli",
"description": "Digital Optimization Group Edge Platform CLI",
"version": "0.0.1-dev-preview-36",
"author": "Digital Optimization Group LLC",
"bin": {
"dog": "./bin/run"
},
"bugs": "https://github.com/DigitalOptimizationGroup/dogcli/issues",
"dependencies": {
"@digitaloptgroup/plugin-install-start": "0.0.1-devpreview-02",
"@oclif/command": "^1.5.14",
"@oclif/config": "^1.12.12",
"@oclif/errors": "^1.2.2",
"@oclif/plugin-autocomplete": "^0.1.0",
"@oclif/plugin-help": "^2",
"@oclif/plugin-plugins": "^1.7.8",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"@types/uuid": "^3.4.4",
"axios": "^0.18.0",
"chalk": "^2.4.2",
"cli-color": "^1.4.0",
"cli-ux": "^5.2.1",
"conf": "^4.0.2",
"configstore": "^4.0.0",
"cookie": "^0.4.0",
"cross-spawn": "^6.0.5",
"diff": "^4.0.1",
"dotenv": "^6.1.0",
"dotenv-webpack": "^1.5.7",
"eventsource": "^1.0.7",
"fast-stable-stringify": "^1.0.0",
"find-up": "^4.0.0",
"glob": "^7.1.3",
"inquirer": "^6.3.1",
"js-yaml": "^3.13.1",
"json-diff": "^0.5.4",
"log-symbols": "^3.0.0",
"mime": "^2.4.2",
"ngrok": "^3.1.1",
"npm-programmatic": "0.0.12",
"pako": "^1.0.10",
"portfinder": "^1.0.20",
"pretty-bytes": "^5.2.0",
"querystring": "^0.2.0",
"request": "^2.88.0",
"rimraf": "^2.6.3",
"sha1": "^1.1.1",
"thenify": "^3.3.0",
"tslib": "^1.10.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.0.0-beta.51",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.51",
"@babel/plugin-proposal-decorators": "^7.0.0-beta.51",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/plugin-syntax-dynamic-import": "^7.0.0-beta.51",
"@babel/plugin-transform-object-assign": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/register": "^7.0.0-beta.51",
"@digitaloptgroup/types": "0.0.1",
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@oclif/tslint": "^3",
"@types/chai": "^4",
"@types/diff": "^4.0.2",
"@types/eventsource": "^1.1.0",
"@types/glob": "^7.1.1",
"@types/inquirer": "^6.0.1",
"@types/js-yaml": "^3.12.1",
"@types/mocha": "^5",
"@types/node": "^10",
"@types/pako": "^1.0.1",
"@types/tar-fs": "^1.16.1",
"babel-loader": "^8.0.6",
"chai": "^4",
"globby": "^8",
"memory-fs": "^0.4.1",
"mocha": "^5",
"nyc": "^14.1.0",
"on-build-webpack": "^0.1.0",
"raw-loader": "^2.0.0",
"ts-loader": "^6.0.2",
"ts-node": "^8",
"tslint": "^5",
"typescript": "^3.3",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.4"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/DigitalOptimizationGroup/dogcli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "dog",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete",
"@oclif/plugin-warn-if-update-available",
"@oclif/plugin-plugins",
"@digitaloptgroup/plugin-install-start"
],
"scope": "digitaloptgroup",
"topics": {
"apps": {
"description": "manage your apps"
},
"autocomplete": {
"description": "setup optional autocomplete",
"hidden": true
},
"cms": {
"description": "work with your CMS"
},
"domains": {
"description": "manage SSL and domains for your app"
},
"help": {
"description": "display this help text"
},
"logs": {
"description": "show realtime server & client logs"
},
"proxy": {
"description": "a/b test & canary release between backends"
},
"plugins": {
"hidden": true
}
}
},
"repository": "DigitalOptGroup/dogcli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme && mv lib/src/* lib/ && rm -d lib/src && cp -r src/templates lib",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md",
"webpack": "webpack"
},
"types": "lib/index.d.ts"
}