forked from kenhowardpdx/vscode-gist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
147 lines (147 loc) · 3.77 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "vscode-gist",
"displayName": "Gist",
"description": "Create, open and edit Gists",
"version": "3.0.3",
"publisher": "kenhowardpdx",
"repository": "https://github.com/kenhowardpdx/vscode-gist",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#387cc0",
"theme": "dark"
},
"activationEvents": [
"*"
],
"main": "./out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Gist configuration",
"properties": {
"gist.maxFiles": {
"type": "number",
"default": 10,
"description": "The maximum number of files to open without a prompt."
},
"gist.defaultPrivate": {
"type": "boolean",
"default": false,
"description": "Defaults all newly created Gists to PRIVATE."
},
"gist.profileOptions": {
"type": "object",
"default": {},
"description": "Override profile configuration options."
}
}
},
"commands": [
{
"command": "extension.gist.open",
"title": "Open Gist",
"category": "GIST"
},
{
"command": "extension.gist.openFavorite",
"title": "Open Favorite Gist",
"category": "GIST"
},
{
"command": "extension.gist.create",
"title": "Create New Gist",
"category": "GIST"
},
{
"command": "extension.gist.openInBrowser",
"title": "Open Gist In Browser",
"category": "GIST"
},
{
"command": "extension.gist.delete",
"title": "Delete Gist",
"category": "GIST"
},
{
"command": "extension.gist.deleteFile",
"title": "Delete File",
"category": "GIST"
},
{
"command": "extension.gist.add",
"title": "Add File",
"category": "GIST"
},
{
"command": "extension.gist.insert",
"title": "Insert Text From Gist File",
"category": "GIST"
},
{
"command": "extension.profile.select",
"title": "Select Profile",
"category": "GIST"
}
],
"keybindings": [
{
"command": "extension.profile.select",
"key": "ctrl+alt+="
},
{
"command": "extension.resetState",
"key": "ctrl+shift+0"
},
{
"command": "extension.gist.add",
"key": "ctrl+alt+a ctrl+alt+a"
},
{
"command": "extension.gist.openInBrowser",
"key": "ctrl+alt+b"
},
{
"command": "extension.gist.open",
"key": "ctrl+alt+o"
}
]
},
"scripts": {
"compile": "tsc -p tsconfig.prod.json",
"lint": "tslint -p tsconfig.json",
"postinstall": "node ./node_modules/vscode/bin/install",
"prettier": "prettier --config .prettierrc.json --list-different 'src/**/*.ts'",
"release": "standard-version",
"test:integration": "npm run compile && node ./node_modules/vscode/bin/test",
"test:unit": "jest --coverage --silent",
"test:watch": "npm run test:unit -- --watchAll",
"test": "npm run lint && npm run prettier && npm run test:unit",
"vscode:prepublish": "npm run compile",
"watch": "tsc -watch -p tsconfig.prod.json"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.8",
"@types/tmp": "0.0.33",
"coveralls": "^3.0.4",
"jest": "^24.8.0",
"prettier": "^1.17.1",
"standard-version": "^6.0.0",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"typescript": "^3.5.1",
"vscode": "^1.1.34"
},
"dependencies": {
"@octokit/rest": "^16.27.3",
"tmp": "0.0.33",
"vscode-extension-telemetry": "^0.1.1"
}
}