-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 804 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 804 Bytes
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
{
"name": "createGUID",
"displayName": "Create GUID",
"description": "A command that creates a new GUID.",
"version": "0.0.2",
"publisher": "nwallace",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/natewallace/createGUID.git"
},
"engines": {
"vscode": "^0.10.1"
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#99C3D7"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.createGUID"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.createGUID",
"title": "Create GUID"
}
]
},
"devDependencies": {
"vscode": "0.10.x"
},
"dependencies": {
"copy-paste": "^1.1.4",
"node-uuid": "^1.4.7"
}
}