-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.47 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
{
"name": "open-related-files",
"displayName": "Open Related Files",
"description": "Quickly navigate files that are in the same folder and have the same name as the file you have currently opened.",
"version": "0.0.4",
"publisher": "georgesg",
"author": {
"name": "Georgi Gardev",
"url": "http://gardev.com",
"email": "[email protected]"
},
"keywords": [
"open-related-files",
"related-files",
"related files"
],
"license": "SEE LICENSE IN LICENSE",
"engines": {
"vscode": "^1.8.0"
},
"categories": [
"Other"
],
"icon": "images/logo/logo.png",
"galleryBanner": {
"color": "#090a57",
"theme": "dark"
},
"activationEvents": [
"*",
"onCommand:openRelatedFiles.open"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "openRelatedFiles.open",
"title": "Open Related Files"
},
{
"command": "openRelatedFiles.create",
"title": "Create Related File"
}
],
"keybindings": [
{
"key": "cmd+shift+r",
"command": "openRelatedFiles.open"
}
],
"configuration": [
{
"title": "Open Related Files Configuration Settings",
"properties": {
"openRelatedFiles.limitToExtensions": {
"type": "array",
"default": [],
"description": "Only look for files with the specified extensions"
},
"openRelatedFiles.openSingleFile": {
"type": "boolean",
"default": true,
"description": "If there is only one related file, open it without prompt."
}
}
}
]
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "tslint --project ./tsconfig.json",
"format": "prettier --write \"**/*.ts\"",
"test": "yarn compile && node ./node_modules/vscode/bin/test",
"ci": "yarn lint && yarn test",
"postinstall": "node ./node_modules/vscode/bin/install",
"update-version": "yarn version && git push --set-upstream origin master --follow-tags",
"vscode:prepublish": "yarn lint && yarn test"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"@types/sinon": "^5.0.2",
"chai": "^4.1.2",
"eslint-plugin-typescript": "^0.12.0",
"prettier": "^1.14.2",
"sinon": "^6.3.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "3.0.1",
"vscode": "^1.1.21"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/GeorgeSG/vscode-open-related-files"
},
"bugs": {
"url": "https://github.com/GeorgeSG/vscode-open-related-files/issues"
},
"badges": [
{
"url": "https://vsmarketplacebadge.apphb.com/version-short/georgesg.open-related-files.svg",
"description": "Latest Version",
"href": "https://marketplace.visualstudio.com/items?itemName=georgesg.open-related-files"
},
{
"url": "https://vsmarketplacebadge.apphb.com/installs-short/georgesg.open-related-files.svg",
"description": "Installs",
"href": "https://marketplace.visualstudio.com/items?itemName=georgesg.open-related-files"
},
{
"url": "https://api.travis-ci.org/GeorgeSG/vscode-open-related-files.svg?branch=master",
"description": "Build Status",
"href": "https://travis-ci.org/GeorgeSG/vscode-open-related-files"
}
]
}