-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
68 lines (68 loc) · 1.71 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
{
"name": "vscode-versionlens",
"private": true,
"description": "Shows the latest version for each package using code lens",
"repository": {
"type": "git",
"url": "https://github.com/vscode-contrib/vscode-versionlens.git"
},
"author": "Peter Flannery",
"license": "MIT",
"version": "0.4.2",
"publisher": "pflannery",
"displayName": "Version Lens",
"icon": "images/logo.png",
"engines": {
"vscode": "0.10.x"
},
"keywords": [
"vscode",
"versions",
"packages",
"npm, bower, dub, dotnet"
],
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:json"
],
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"watch": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"clean": "grunt clean:sourceArtifacts",
"compile": "grunt compile",
"test": "grunt test"
},
"devDependencies": {
"typescript": "^1.8.7",
"vscode": " ^0.11.7",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"load-grunt-config": "^0.19.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-shell": "^1.2.1"
},
"dependencies": {
"bower": "^1.7.7",
"vscode-contrib-jsonc": "1.0.0-beta",
"semver": "^5.1.0",
"vscode-languageclient": "^2.1.0",
"request-light": "^0.1"
},
"contributes": {
"configuration": {
"type": "object",
"title": "Versionlens options",
"properties": {
"versionlens.versionPrefix": {
"type": "string",
"default": "",
"description": "Inserts this prefix before the version when clicking on the code lens link."
}
}
}
}
}