-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.28 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
{
"name": "pulltointerfacor",
"publisher": "DanTurco",
"displayName": "Pull To Interface C#",
"description": "A Visual Studio Code Extension to include the ability to **Pull** methods and properties to inherited interfaces and base classes. This is targeted to C# development and is meant as a supplemental extension to C# Dev Kit. This extension supports pulling public properties and methods to interfaces, and public and protected methods to base classes.",
"version": "1.0.3",
"engines": {
"vscode": "^1.85.0"
},
"repository": {
"url": "https://github.com/d1820/PullToInterfacor.git",
"type": "git"
},
"homepage": "https://github.com/d1820/PullToInterfacor/blob/main/README.md",
"icon": "./PullToInterfacor.png",
"galleryBanner": {
"color": "#2596be",
"theme": "light"
},
"bugs": {
"url": "https://github.com/d1820/PullToInterfacor/issues"
},
"categories": [
"Programming Languages",
"Other"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "pulltointerfacor.pullto",
"title": "Pull To"
}
]
},
"activationEvents": [
"onLanguage:csharp"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"vscode:package": "vsce package",
"vscode:publish": "vsce publish",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"lint-fix": "eslint src --ext ts --fix",
"test": "vscode-test",
"test-jest": "jest --verbose false",
"test-jest-watch": "jest --watch",
"test-jest-coverage": "jest --coverage",
"test:integration": "npm run compile && node ./node_modules/vscode/bin/test",
"update-toc": "powershell -ExecutionPolicy Unrestricted markdown-toc ./README.md -i --bullets=\"-\" ; Write-Host \"Complete\""
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-mock-vscode": "^2.1.1",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}