This repository has been archived by the owner on Jan 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.94 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
{
"name": "nuget4code",
"displayName": "Nuget4Code",
"description": "manage nuget packages within Visual Studio Code",
"icon": "icon.png",
"license": "MIT",
"version": "0.0.3",
"repository": {
"type": "git",
"url": "https://github.com/fforjan/nuget4code/"
},
"bugs": {
"url": "https://github.com/fforjan/nuget4code/issues"
},
"author": {
"name": "Frederic Forjan",
"email": "fforjan@free.fr",
"url": "https://github.com/fforjan"
},
"publisher": "fforjan",
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.nuget4code.remove",
"onCommand:extension.nuget4code.install",
"onCommand:extension.nuget4code.upgrade"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.nuget4code.remove",
"title": "Nuget: Remove a package from the project.info"
},
{
"command": "extension.nuget4code.install",
"title": "Nuget: Install/Reference a package into the project.info"
},
{
"command": "extension.nuget4code.upgrade",
"title": "Nuget: Upgrade to latest into the project.info"
}
],
"configuration": {
"type": "object",
"title": "Nuget4Code configuration",
"properties": {
"nuget4code.repository": {
"type": "string",
"default": "https://api.nuget.org/v3/index.json",
"description": "Repository URL, note that the uri should return end points configuration"
}
}
}
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"mock-fs": "^3.4.0",
"should": "^8.0.2",
"typescript": "^1.6.2",
"vscode": "0.10.7"
},
"dependencies": {
"semver": "^5.1.0"
}
}