-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
76 lines (76 loc) · 2.16 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
{
"name": "vscode-nuget-package-manager",
"displayName": "NuGet Package Manager",
"description": "Add or remove .NET Core 1.1+ package references to/from your project's .csproj or .fsproj file using Code's Command Palette.",
"version": "1.1.6",
"publisher": "jmrog",
"author": "Jason Rogers <jason@jmichaelrogers.com>",
"license": "MIT",
"keywords": [
"nuget",
"package",
"csproj",
"fsproj",
".net core",
"manager",
"add",
"remove",
"install",
"C#",
"F#"
],
"engines": {
"vscode": "^1.10.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.addNuGetPackage",
"onCommand:extension.removeNuGetPackage"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.addNuGetPackage",
"title": "NuGet Package Manager: Add Package"
},
{
"command": "extension.removeNuGetPackage",
"title": "NuGet Package Manager: Remove Package"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"dependencies": {
"https-proxy-agent": "^1.0.0",
"node-fetch": "1.6.3",
"xml2js": "0.4.17"
},
"devDependencies": {
"@types/expect": "^1.20.0",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"expect": "^1.20.2",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"gulp-xml2js": "^0.1.1",
"mocha": "^2.3.3",
"typescript": "^2.2.2",
"vscode": "^1.0.0"
},
"bugs": {
"url": "https://github.com/jmrog/vscode-nuget-package-manager/issues"
},
"homepage": "https://github.com/jmrog/vscode-nuget-package-manager/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/jmrog/vscode-nuget-package-manager.git"
}
}