forked from microsoft/vscode-generator-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.3 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
{
"name": "generator-code",
"version": "1.7.0",
"description": "Yeoman generator for Visual Studio Code extensions.",
"keywords": [
"yeoman-generator",
"vscode",
"visual studio",
"visual studio code",
"vs code",
"extensions"
],
"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": ">=14.15.0"
},
"scripts": {
"test": "mocha",
"prepublishOnly": "npm test",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"dependencies": {
"chalk": "^5.0.1",
"fast-plist": "^0.1.2",
"request-light": "^0.5.8",
"sanitize-filename": "^1.6.3",
"which": "^2.0.2",
"yeoman-generator": "^5.7.0",
"yosay": "^2.0.2"
},
"devDependencies": {
"@types/mocha": "^10.0.0",
"@types/node": "^16.x",
"@types/yeoman-generator": "^5.2.11",
"@types/yeoman-test": "^4.0.3",
"mocha": "^10.0.0",
"yeoman-environment": "^3.12.0",
"yeoman-test": "^6.3.0"
}
}