-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
86 lines (86 loc) · 2.29 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
77
78
79
80
81
82
83
84
85
86
{
"name": "vscode-helpers",
"author": "Marcel Joachim Kloubert",
"version": "10.0.1",
"description": "Helper functions and classes for own VS Code (extensions)",
"tags": [
"functions",
"classes",
"typescript",
"tools",
"helpers",
"vscode"
],
"keywords": [
"functions",
"classes",
"js",
"ecmascript",
"javascript",
"typescript",
"tools",
"helpers",
"vscode",
"visual",
"studio",
"code",
"extensions",
"modules"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "LGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/mkloubert/vscode-helpers"
},
"bugs": {
"url": "https://github.com/mkloubert/vscode-helpers/issues"
},
"homepage": "https://github.com/mkloubert/vscode-helpers",
"scripts": {
"build": "del ./lib && tsc",
"prepack": "del ./lib && tsc -p ./",
"compile": "del ./lib && tsc -watch -p ./",
"lint": "tslint --project tsconfig.json -e src/*.ts -t verbose",
"prepare": "node ./node_modules/vscode/bin/install",
"test": "echo 'Test is not enabled for this package'"
},
"dependencies": {
"@types/glob": "8.0.0",
"@types/lodash": "4.14.186",
"@types/marked": "4.0.7",
"@types/minimatch": "5.1.2",
"@types/node": "16.11.62",
"@types/tmp": "0.2.3",
"@types/uuid": "8.3.4",
"@types/ws": "8.5.3",
"compare-versions": "5.0.1",
"fast-glob": "3.2.12",
"glob": "8.0.3",
"header-case-normalizer": "1.0.3",
"is-stream": "3.0.0",
"isbinaryfile": "5.0.0",
"lodash": "4.17.21",
"marked": "4.1.1",
"merge-deep": "3.0.3",
"minimatch": "5.1.0",
"moment": "2.29.4",
"moment-timezone": "0.5.37",
"node-enumerable": "6.0.0",
"p-queue": "6.6.2",
"tmp": "0.2.1",
"uuid": "9.0.0",
"ws": "8.9.0"
},
"devDependencies": {
"del-cli": "5.0.0",
"tslint": "6.1.3",
"typescript": "4.8.4",
"vsce": "2.11.0",
"vscode": "^0.9.9"
},
"engines": {
"vscode": "^1.62.0"
}
}