-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
142 lines (142 loc) · 3.62 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "vscode-dotnet-watch",
"displayName": ".NET Watch",
"description": "Dotnet watch with automatic debugger attach",
"version": "1.1.8",
"publisher": "Murugaratham",
"engines": {
"vscode": "^1.69.1"
},
"extensionDependencies": [
"ms-dotnettools.csharp"
],
"categories": [
"Debuggers",
"Programming Languages"
],
"keywords": [
"C#",
"multi-root ready",
"dotnet watch"
],
"icon": "images/watch-debug.png",
"contributors": [
{
"name": "Dennis Jung"
},
{
"name": "Konrad Müller"
},
{
"name": "Murugaratham"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/murugaratham/vscode-dotnet-watch/"
},
"bugs": {
"url": "https://github.com/murugaratham/vscode-dotnet-watch/issues"
},
"homepage": "https://github.com/murugaratham/vscode-dotnet-watch",
"activationEvents": [
"onDebug",
"onLanguage:csharp"
],
"main": "./out/extension",
"contributes": {
"debuggers": [
{
"type": "DotNetWatch",
"label": ".NET Watch",
"configurationAttributes": {
"launch": {
"properties": {
"args": {
"type": "array",
"description": "Command line arguments passed to the program.",
"items": {
"type": "string"
},
"default": []
},
"env": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Environment variables passed to the program.",
"default": {}
},
"project": {
"type": "string",
"description": "The project to start, bypass the quick pick menu.",
"default": ""
}
}
}
},
"configurationSnippets": [
{
"label": ".NET: Watch Debug (dotnet-watch)",
"description": "A new configuration for launching .NET watch",
"body": {
"type": "DotNetWatch",
"request": "launch",
"name": ".NET Core Watch",
"args": [],
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"lint": "eslint '*/**/*.{ts,js}'",
"prepare": "husky install",
"commit": "cz",
"release": "standard-version --skip.commit"
},
"dependencies": {
"typescript-collections": "^1.3.3"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^11.15.3",
"@types/vscode": "1.69.1",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"commitizen": "^4.2.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"glob": "^7.1.5",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"mocha": "^6.2.2",
"prettier": "^2.5.1",
"standard-version": "^9.3.2",
"tslint": "^5.20.1",
"typescript": "4.7.4",
"vscode-test": "^1.2.2"
},
"lint-staged": {
"*.{js,ts}": "eslint --quiet --ext js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}