-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.31 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
{
"name": "cyclic-expand",
"displayName": "Cyclic Expand",
"description": "Cyclic expand / Hippie completion",
"version": "0.0.4",
"publisher": "benjamin-thomas",
"engines": {
"vscode": "^1.70.0"
},
"repository": {
"type": "git",
"url": "https://github.com/benjamin-thomas/vscode-cyclic-expand"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:cyclicExpand.next",
"onCommand:cyclicExpand.prev"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "cyclicExpand.next",
"title": "Cycle to the next word"
},
{
"command": "cyclicExpand.prev",
"title": "Cycle to the prev word"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"test": "npm run unit-test",
"dev-unit-test": "npm run unit-test -- --watch --watch-extensions ts",
"unit-test": "mocha --require ts-node/register test/unit/**/*.ts"
},
"devDependencies": {
"@types/escape-string-regexp": "2.0.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.14",
"mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"dependencies": {
"@types/vscode": "^1.71.0",
"escape-string-regexp": "^4.0.0",
"vscode-test": "^1.6.1"
}
}