-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.86 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.86 KB
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
{
"name": "zation",
"displayName": "Zation",
"publisher": "LucaCode",
"description": "Snippets and commands for Zation development.",
"version": "1.0.0",
"license": "SEE LICENSE IN <README.md>",
"engines": {
"vscode": "^1.41.0"
},
"author": {
"name": "Ing. Luca Gian Scaringella",
"email": "lucacode1@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/ZationServer/zation-vscode.git"
},
"icon": "assets/icon.png",
"categories": [
"Snippets",
"Other"
],
"keywords": [
"Zation",
"Zation Server",
"Application Server Framework",
"Real-Time",
"Fast"
],
"activationEvents": [
"onCommand:zation.NewProject",
"onCommand:zation.CloneClusterComponent",
"onCommand:zation.ShowVersions"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "zation.NewProject",
"title": "Zation: New Project"
},
{
"command": "zation.ShowVersions",
"title": "Zation: Show Versions"
}
],
"snippets": [
{
"language": "typescript",
"path": "./snippets/typescriptSnippets.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"dependencies": {
"fs-extra": "8.1.0",
"download-git-repo": "3.0.2",
"empty-dir": "1.0.0"
},
"devDependencies": {
"@types/fs-extra": "^8.0.1",
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.7",
"@types/vscode": "^1.41.0",
"@types/empty-dir": "^2.0.0",
"glob": "^7.1.5",
"mocha": "^6.2.2",
"tslint": "^5.20.0",
"typescript": "^3.6.4",
"vscode-test": "^1.2.2"
},
"__metadata": {
"id": "a9afc72f-0eda-4c0c-9455-b10844e19642",
"publisherDisplayName": "LucaCode",
"publisherId": "2e30bdd5-d392-486e-8b3c-88cd571e4e1c",
"isPreReleaseVersion": false
}
}