forked from nocksock/vscode-quick-open-create
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.11 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
{
"name": "vscode-quick-open-create",
"displayName": "Quick Open Create",
"description": "quick-open-create makes it easy to open and create new files relative to the currently open one and browsing the directories without leaving the keyboard.",
"version": "0.6.0",
"publisher": "nocksock",
"engines": {
"vscode": "^1.16.0"
},
"bugs": {
"url": "https://github.com/nocksock/vscode-quick-open-create/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nocksock/vscode-quick-open-create.git"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:quickOpenCreate.open"
],
"main": "./out/src/extension",
"icon": "images/icon.png",
"contributes": {
"configuration": {
"type": "object",
"title": "Quick Open Create",
"properties": {
"quick-open-create.ignore": {
"type": "array",
"default": [
"jpg",
"png",
"gif",
"mp4"
],
"description": "Ignore these file extensions"
}
}
},
"commands": [
{
"command": "quickOpenCreate.open",
"title": "Quick Open Create: Open"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.48",
"@types/node": "^7.0.67",
"mocha": "^3.5.0",
"typescript": "^2.9.2",
"vscode": "^1.1.18"
},
"dependencies": {
"q": "^1.5.1"
},
"__metadata": {
"id": "19eafc9b-6b16-4789-a773-48a59a95514e",
"publisherDisplayName": "nocksock",
"publisherId": "b727d1dc-290a-435d-babe-41ebbc50942c"
}
}