This repository was archived by the owner on Sep 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 1.91 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
{
"name": "@lando/docker-desktop",
"version": "4.0.0-alpha.0",
"description": "A node library and CLI for managing Docker Desktop.",
"author": "Mike Pirog @pirog",
"license": "GPL-3.0",
"repository": "lando/docker-desktop",
"bugs": "https://github.com/lando/docker-desktop/issues",
"homepage": "https://github.com/lando/docker-desktop",
"keywords": [
"docker",
"lando",
"oclif"
],
"engines": {
"node": ">=14.0.0"
},
"main": "lib/docker-desktop.js",
"bin": {
"docker-desktop": "./bin/docker-desktop"
},
"files": [
"/bin",
"/cli",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/scripts",
"/src",
"/utils"
],
"dependencies": {
"@lando/argv": "^1.1.0",
"@oclif/core": "^1",
"@oclif/plugin-help": "^5"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.7",
"@lando/leia": "^0.6.4",
"@oclif/test": "^2",
"chai": "^4",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4",
"globby": "^11",
"mocha": "^9",
"oclif": "^2",
"pkg": "^5.6.0",
"shx": "^0.3.3",
"version-bump-prompt": "^6.1.0"
},
"scripts": {
"build": "shx rm -rf dist && pkg -c package.json -t node14 bin/docker-desktop",
"lint": "eslint bin/docker-desktop . --ext .js --config .eslintrc",
"test": "mocha --forbid-only \"test/**/*.test.js\"",
"release": "bump --prompt --tag --all --push"
},
"babel": {},
"oclif": {
"bin": "docker-desktop",
"dirname": "docker-desktop",
"commands": "./cli/commands",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " ",
"topics": {
"hello": {
"description": "Say hello to the world and others"
}
}
},
"pkg": {
"outputPath": "dist",
"scripts": [
"bin/*.js",
"lib/*.js",
"cli/**/*.js"
],
"assets": [
"package.json",
"yarn.lock"
]
}
}