-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.53 KB
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
{
"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.5",
"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"
],
"keywords": [
"c#",
"csharp",
"dotnet",
".net",
"interface",
"refactor",
"refactoring",
"pull to interface",
"extract interface",
"base class",
"inheritance",
"code generation"
],
"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.10",
"@types/node": "26.x",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^3.0.0",
"@vscode/vsce": "^3.9.2",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-mock-vscode": "^2.1.1",
"ts-jest": "^29.4.11",
"typescript": "^5.3.3"
}
}