-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.29 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.29 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@flavour/cli",
"description": "Flavour CLI",
"version": "0.7.7",
"author": "Vadim Sikora @vxsx",
"bin": {
"flavour": "./bin/run"
},
"bugs": "https://gitlab.com/divio/flavour/cli/issues",
"dependencies": {
"@oclif/command": "^1.5.13",
"@oclif/config": "^1.13.0",
"@oclif/plugin-autocomplete": "^0.1.0",
"@oclif/plugin-help": "^2.1.6",
"@oclif/plugin-update": "^1.3.9",
"dockerode": "^2.5.8",
"execa": "^2.0.4",
"fs-extra": "^8.0.1",
"indent-string": "^4.0.0",
"is-url": "^1.2.4",
"js-yaml": "^3.13.1",
"listr": "^0.14.3",
"lodash": "^4.17.15",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"tslib": "^1.9.3"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.0",
"@oclif/test": "^1.2.4",
"@oclif/tslint": "^3.1.1",
"@types/chai": "^4.1.7",
"@types/dockerode": "^2.5.19",
"@types/is-url": "^1.2.28",
"@types/js-yaml": "^3.12.1",
"@types/listr": "^0.14.0",
"@types/mocha": "^5.2.6",
"@types/node": "^10.14.7",
"@types/request-promise-native": "^1.0.16",
"aws-sdk": "^2.531.0",
"chai": "^4.2.0",
"globby": "^8.0.2",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://gitlab.com/divio/flavour/cli",
"keywords": [
"oclif"
],
"license": "Apache-2.0",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "flavour",
"macos": {
"identifier": "org.flavour.cli"
},
"update": {
"s3": {
"bucket": "divio-app-releases",
"templates": {
"target": {
"unversioned": "<%- bin %>-cli/<%- channel === 'stable' ? '' : 'channels/' + channel + '/' %><%- bin %>-<%- platform %>-<%- arch %><%- ext %>",
"versioned": "<%- bin %>-cli/<%- channel === 'stable' ? '' : 'channels/' + channel + '/' %><%- bin %>-v<%- version %>/<%- bin %>-v<%- version %>-<%- platform %>-<%- arch %><%- ext %>",
"manifest": "<%- bin %>-cli/<%- channel === 'stable' ? '' : 'channels/' + channel + '/' %><%- platform %>-<%- arch %>"
},
"vanilla": {
"unversioned": "<%- bin %>-cli/<%- channel === 'stable' ? '' : 'channels/' + channel + '/' %><%- bin %><%- ext %>",
"versioned": "<%- bin %>-cli/<%- channel === 'stable' ? '' : 'channels/' + channel + '/' %><%- bin %>-v<%- version %>/<%- bin %>-v<%- version %><%- ext %>",
"manifest": "<%- bin %>-cli/<%- channel === 'stable' ? '' : 'channels/' + channel + '/' %>version"
}
}
}
},
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete",
"@oclif/plugin-update"
]
},
"repository": "flavour/cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"pack": "oclif-dev pack",
"publish": "oclif-dev publish",
"posttest": "tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc -b -f && oclif-dev manifest && oclif-dev readme",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}