-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 2.41 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
{
"name": "find-then-jump",
"displayName": "Find Then Jump",
"description": "Vim Easymotion inspired code navigation.",
"version": "2.0.5",
"publisher": "tranhl",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"icon": "demo/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/tranhl/find-then-jump.git"
},
"activationEvents": [
"*"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "findThenJump.initiate",
"title": "Find Then Jump"
},
{
"command": "findThenJump.initiateWithSelection",
"title": "Find Then Jump With Selection"
}
],
"colors": [
{
"id": "findThenJump.textDecorationForeground",
"description": "Foreground color of decorations that appear to the left of search term matches.",
"defaults": {
"dark": "#FFF",
"light": "#FFF",
"highContrast": "#FFF"
}
},
{
"id": "findThenJump.textDecorationBackground",
"description": "Background color of decorations that appear to the left of search term matches.",
"defaults": {
"dark": "#4169E1",
"light": "#4169E1",
"highContrast": "#4169E1"
}
}
],
"untrustedWorkspaces": {
"supported": true
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"test-compile": "tsc -p ./"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"ts-loader": "^7.0.0",
"typescript": "^2.6.1",
"vscode": "^1.1.37",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@types/ramda": "^0.25.47",
"ramda": "^0.26.1"
}
}