-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "zsh-pyenv",
"description": "Simple Python version management",
"author": "Yuu Yamashita, Sam Stephenson, Mislav Marohnić, Josh Friend",
"homepage": "https://github.com/pyenv/pyenv",
"bugs": {
"url": "https://github.com/pyenv/pyenv/issues"
},
"license": "MIT",
"keywords": [
"version management",
"python version management",
"zsh"
],
"zsh-data": {
"plugin-info": {
"user": "pyenv",
"plugin": "pyenv",
"requires": "bgn;bash"
},
"zi-ices": {
"default": {
"git": "",
"depth": 1,
"lucid": "",
"as": "command",
"pick": "bin/pyenv",
"atclone": "PYENV_ROOT=\"$PWD\" ./libexec/pyenv init - > zpyenv.zsh",
"atpull": "%atclone",
"atinit": "export PYENV_ROOT=\"$PWD\"",
"src": "zpyenv.zsh",
"nocompile": "!"
},
"bgn": {
"requires": "bgn",
"git": "",
"lucid": "",
"as": "null",
"atclone": "PYENV_ROOT=\"$PWD\" ./libexec/pyenv init - > zpyenv.zsh",
"atpull": "%atclone",
"atinit": "export PYENV_ROOT=\"$PWD\"",
"src": "zpyenv.zsh",
"nocompile": "!",
"sbin": "bin/pyenv"
}
}
}
}