-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
97 lines (97 loc) · 2.54 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
{
"name": "paste-image-to-qiniu",
"displayName": "paste image to qiniu",
"description": "截图上传七牛云插件",
"version": "0.0.1",
"publisher": "favers",
"author": {
"name": "favers",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/favers/vscode-qiniu-upload-image.git"
},
"homepage": "https://github.com/favers/vscode-qiniu-upload-image/blob/master/README.md",
"bugs": {
"url": "https://github.com/favers/vscode-qiniu-upload-image/issues"
},
"engines": {
"vscode": "^1.11.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.pasteImageToQiniu"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.pasteImageToQiniu",
"title": "Paste Image To Qiniu"
}
],
"keybindings": [
{
"command": "extension.pasteImageToQiniu",
"key": "ctrl+alt+v",
"mac": "cmd+alt+v",
"when": "editorTextFocus"
}
],
"configuration": {
"type": "object",
"title": "pasteImageToQiniu configuration",
"properties": {
"pasteImageToQiniu.access_key": {
"type": "string",
"default": "",
"description": "一个有效的七牛 AccessKey 签名授权。"
},
"pasteImageToQiniu.secret_key": {
"type": "string",
"default": "",
"description": "一个有效的七牛 SecretKey 签名授权。"
},
"pasteImageToQiniu.bucket": {
"type": "string",
"default": "",
"description": "七牛图片上传空间。"
},
"pasteImageToQiniu.remotePath": {
"type": "string",
"default": "${fileName}",
"description": "七牛图片上传路径,参数化命名。"
},
"pasteImageToQiniu.domain": {
"type": "string",
"default": "",
"description": "七牛图床域名。"
},
"pasteImageToQiniu.localPath": {
"type": "string",
"default": "./img",
"description": "图片本地保存位置"
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"eslint": "^3.6.0",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
},
"dependencies": {
"moment": "^2.18.1",
"qiniu": "^6.1.13"
}
}