forked from microsoft/vscode-vsce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.32 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "vsce",
"version": "0.0.0",
"description": "VSCode Extension Manager",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vsce"
},
"homepage": "https://code.visualstudio.com",
"bugs": "https://github.com/Microsoft/vsce/issues",
"keywords": [
"vscode",
"vsce",
"extension"
],
"contributors": [
"Microsoft Corporation"
],
"author": "Microsoft Corporation",
"license": "MIT",
"main": "out/api.js",
"typings": "out/api.d.ts",
"bin": {
"vsce": "vsce"
},
"scripts": {
"compile": "tsc",
"build": "tsc",
"watch:build": "npm run compile -- --watch",
"test": "mocha",
"watch:test": "npm run test -- --watch",
"prepare": "husky install"
},
"engines": {
"node": ">= 14"
},
"dependencies": {
"azure-devops-node-api": "^11.0.1",
"chalk": "^2.4.2",
"cheerio": "^1.0.0-rc.9",
"commander": "^6.1.0",
"glob": "^7.0.6",
"hosted-git-info": "^4.0.2",
"keytar": "^7.7.0",
"leven": "^3.1.0",
"markdown-it": "^12.3.2",
"mime": "^1.3.4",
"minimatch": "^3.0.3",
"parse-semver": "^1.1.1",
"read": "^1.0.7",
"semver": "^5.1.0",
"tmp": "^0.2.1",
"typed-rest-client": "^1.8.4",
"url-join": "^4.0.1",
"xml2js": "^0.4.23",
"yauzl": "^2.3.1",
"yazl": "^2.2.2"
},
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@types/cheerio": "^0.22.29",
"@types/glob": "^7.1.1",
"@types/hosted-git-info": "^3.0.2",
"@types/markdown-it": "^0.0.2",
"@types/mime": "^1",
"@types/minimatch": "^3.0.3",
"@types/mocha": "^7.0.2",
"@types/node": "^14.17.32",
"@types/read": "^0.0.28",
"@types/semver": "^6.0.0",
"@types/tmp": "^0.2.2",
"@types/url-join": "^4.0.1",
"@types/xml2js": "^0.4.4",
"@types/yauzl": "^2.9.2",
"@types/yazl": "^2.4.2",
"husky": "^7.0.4",
"mocha": "^9.2.0",
"npm-run-all": "^4.1.5",
"prettier": "2.1.2",
"pretty-quick": "^3.0.2",
"semantic-release": "^19.0.2",
"source-map-support": "^0.4.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"mocha": {
"require": [
"ts-node/register"
],
"watch-files": "src/**",
"spec": "src/test/**/*.ts"
},
"prettier": {
"useTabs": true,
"printWidth": 120,
"singleQuote": true,
"arrowParens": "avoid"
},
"release": {
"branches": [
"main"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}