forked from microsoft/vscode-generator-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.22 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
{
"name": "generator-code",
"version": "1.11.3",
"description": "Yeoman generator for Visual Studio Code extensions.",
"keywords": [
"yeoman-generator",
"vscode",
"visual studio",
"visual studio code",
"vs code",
"extensions"
],
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-generator-code.git"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-generator-code/issues"
},
"main": "./generators/app/index.js",
"homepage": "http://code.visualstudio.com",
"license": "MIT",
"author": {
"name": "VS Code Team",
"url": "https://github.com/Microsoft"
},
"engines": {
"node": "^18.17.0 || >=20.5.0"
},
"scripts": {
"test": "mocha",
"prepublishOnly": "npm test",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"dependencies": {
"chalk": "^5.3.0",
"fast-plist": "^0.1.3",
"request-light": "^0.8.0",
"which": "^4.0.0",
"yeoman-generator": "^7.3.2",
"yosay": "^3.0.0"
},
"devDependencies": {
"@types/mocha": "^10.0.8",
"@types/node": "^18.19.39",
"mocha": "^10.7.3",
"yeoman-environment": "^4.4.1",
"yeoman-test": "^9.2.0"
}
}