forked from microsoft/vscode-generator-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.34 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
{
"name": "generator-code",
"version": "1.2.21",
"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": ">=10.0.0"
},
"scripts": {
"test": "mocha",
"prepublish": "npm test",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"dependencies": {
"assert-plus": "^1.0.0",
"cd": "^0.3.3",
"chalk": "^4.1.0",
"fast-plist": "^0.1.2",
"request-light": "^0.4.0",
"sanitize-filename": "^1.6.3",
"sax": "^1.2.4",
"yeoman-generator": "^4.11.0",
"yosay": "^2.0.2",
"kind-of": "6.0.3"
},
"devDependencies": {
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.27",
"@types/yeoman-generator": "^3.1.4",
"mocha": "^8.0.1",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^2.6.0",
"yo": "^3.1.1"
}
}