-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.13 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
{
"name": "emzcli",
"description": "CLI to do some 8mylez shopware stuff",
"version": "1.4.0",
"author": "8mylez @8mylez",
"bin": {
"emz": "./bin/run"
},
"bugs": "https://github.com/8mylez/emzcli/issues",
"dependencies": {
"@oclif/command": "^1.5.8",
"@oclif/config": "^1.12.0",
"@oclif/plugin-help": "^2.1.4",
"copy-dir": "^0.4.0",
"del": "^3.0.0",
"nodegit": "^0.24.1",
"zip-local": "^0.3.4"
},
"devDependencies": {
"@oclif/dev-cli": "^1.21.0",
"globby": "^8.0.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/8mylez/emzcli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "emz",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "8mylez/emzcli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
}
}