-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
144 lines (144 loc) · 4.57 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
{
"name": "blamer-vs",
"displayName": "SVN Blamer",
"description": "Visually blame SVN-stored code line-by-line",
"version": "0.7.1",
"publisher": "beaugust",
"repository": {
"type": "git",
"url": "https://github.com/BeauAgst/blamer-vs.git"
},
"bugs": {
"url": "https://github.com/BeauAgst/blamer-vs/issues"
},
"homepage": "https://github.com/BeauAgst/blamer-vs",
"icon": "dist/img/marketplace/icon.png",
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"SCM Providers",
"Other"
],
"keywords": [
"svn",
"blame",
"log"
],
"main": "./dist/extension.js",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "blamer-vs.clearBlame",
"title": "SVN Blamer: Clear blame"
},
{
"command": "blamer-vs.showBlame",
"title": "SVN Blamer: Show blame"
},
{
"command": "blamer-vs.toggleBlame",
"icon": "$(git-merge)",
"title": "SVN Blamer: Toggle blame"
}
],
"configuration": {
"title": "SVN Blamer",
"type": "object",
"properties": {
"svnBlamer.autoBlame": {
"default": false,
"description": "Automatically blames files as you open them.",
"type": "boolean"
},
"svnBlamer.enableLogs": {
"default": true,
"description": "Enables popup revision log data. Disabling this setting will significantly speed up blame.",
"type": "boolean"
},
"svnBlamer.enableVisualIndicators": {
"default": true,
"description": "Enable/Disable visual indicators that sit to the left of the line number.",
"type": "boolean"
},
"svnBlamer.svnExecutablePath": {
"type": "string",
"default": "svn",
"description": "Path to svn executable or alternative command"
}
}
},
"keybindings": [
{
"command": "blamer-vs.showBlame",
"key": "ctrl+alt+d",
"mac": "ctrl+cmd+x",
"when": "editorTextFocus"
},
{
"command": "blamer-vs.toggleBlame",
"key": "ctrl+alt+e",
"mac": "ctrl+cmd+y",
"when": "editorTextFocus"
}
],
"menus": {
"editor/title": [
{
"command": "blamer-vs.toggleBlame",
"group": "navigation"
}
]
}
},
"scripts": {
"compile-tests": "tsc -p . --outDir out",
"esbuild": "node ./esbuild.config.mjs",
"format": "prettier --write --ignore-unknown .",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint src --ext ts",
"prepare": "husky",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"test": "vscode-test",
"vscode:prepublish": "npm run esbuild -- --minify",
"watch-tests": "tsc -p . -w --outDir out",
"watch": "npm run esbuild -- --sourcemap --watch"
},
"devDependencies": {
"@types/lodash.merge": "^4.6.9",
"@types/luxon": "^3.4.2",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.17.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.9",
"esbuild": "^0.20.2",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"dependencies": {
"lodash.merge": "^4.6.2",
"luxon": "^3.4.4",
"xml-js": "^1.6.11"
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint src --ext ts --fix",
"prettier --cache --write --ignore-unknown"
]
}
}