-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
118 lines (118 loc) · 3.92 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
{
"name": "vscode-jumpy",
"displayName": "jumpy",
"description": "Jumpy provides fast cursor movement, inspired by Atom's package of the same name.",
"icon": "images/jumpy-icon.png",
"license": "MIT",
"version": "0.3.1",
"publisher": "wmaurer",
"engines": {
"vscode": "^1.24.0"
},
"categories": [
"Other"
],
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"keywords": [
"jumpy",
"jump",
"AceJump",
"EasyMotion"
],
"repository": {
"type": "git",
"url": "https://github.com/wmaurer/vscode-jumpy.git"
},
"bugs": {
"url": "https://github.com/wmaurer/vscode-jumpy/issues"
},
"homepage": "https://github.com/wmaurer/vscode-jumpy/blob/master/README.md",
"activationEvents": [
"onCommand:extension.jumpy-word",
"onCommand:extension.jumpy-line",
"onCommand:extension.jumpy-exit"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.jumpy-word",
"title": "Jumpy Word Mode"
},
{
"command": "extension.jumpy-line",
"title": "Jumpy Line Mode"
},
{
"command": "extension.jumpy-exit",
"title": "Exit Jumpy Mode"
}
],
"configuration": {
"type": "object",
"title": "Jumpy Configuration",
"properties": {
"jumpy.wordRegexp": {
"type": "string",
"default": "\\w{2,}",
"description": "The Regexp to use to match words in Jumpy Word Mode"
},
"jumpy.lineRegexp": {
"type": "string",
"default": "^\\s*$",
"description": "The Regexp to use to match empty lines in Jumpy Line Mode"
},
"jumpy.fontFamily": {
"type": "string",
"default": "",
"description": "Font used in Jumpy decorations, defaults to font from settings"
},
"jumpy.fontSize": {
"type": "number",
"default": 0,
"description": "Font size used in Jumpy decorations, defaults to font size from settings"
},
"jumpy.darkThemeBackground": {
"type": "string",
"default": "white",
"description": "Background of Jumpy decoration in dark themes"
},
"jumpy.darkThemeForeground": {
"type": "string",
"default": "black",
"description": "Text color of Jumpy decoration in dark themes"
},
"jumpy.lightThemeBackground": {
"type": "string",
"default": "black",
"description": "Background of Jumpy decoration in light themes"
},
"jumpy.lightThemeForeground": {
"type": "string",
"default": "white",
"description": "Text color of Jumpy decoration in light themes"
}
}
}
},
"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",
"format": "prettier ./**/*.{ts,json} --write"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.45",
"mocha": "^5.2.0",
"prettier": "^1.13.5",
"tslint": "^3.15.1",
"typescript": "^2.6.1",
"vscode": "^1.1.6"
}
}