-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
27 lines (27 loc) · 838 Bytes
/
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
{
"name": "vscode-quick-scope",
"displayName": "Vim quick-scope",
"description": "Highlights a unique character in each word so you can jump there with `f` and similar. Who needs EasyMotion?",
"version": "0.1.3",
"publisher": "skattyadz",
"engines": {
"vscode": "^1.19.0"
},
"categories": ["Other"],
"keywords": ["vim", "quick-scope", "quick", "scope", "jump"],
"activationEvents": ["*"],
"main": "./out/extension",
"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": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
}
}