This repository has been archived by the owner on Sep 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
103 lines (103 loc) · 2.47 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
{
"name": "yo",
"version": "0.9.11",
"description": "Scaffold projects using Yeoman.",
"license": "MIT",
"publisher": "camel-tooling",
"preview": true,
"repository": {
"type": "git",
"url": "https://github.com/camel-tooling/vscode-yeoman"
},
"bugs": {
"url": "https://github.com/camel-tooling/vscode-yeoman/issues"
},
"author": {
"name": "Sam Verschueren",
"email": "[email protected]",
"url": "https://github.com/SamVerschueren"
},
"maintainers": [
{
"name": "Brian Fitzpatrick",
"email": "[email protected]",
"url": "http://redhat.com"
}
],
"icon": "icon.png",
"engines": {
"vscode": "^1.29.1"
},
"activationEvents": [
"onCommand:yeoman.yeoman",
"onCommand:yeoman.yo"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "yeoman.yeoman",
"title": "Generate Yeoman",
"category": "Yeoman"
},
{
"command": "yeoman.yo",
"title": "Yo",
"category": "Yeoman"
}
],
"menus": {
"explorer/context": [
{
"command": "yeoman.yeoman",
"group": "navigation@50",
"when": "explorerResourceIsFolder"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -w -p ./",
"clean": "rm -rf out || rmdir out /s /q",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run clean && npm run compile && node ./node_modules/vscode/bin/test",
"update-deps": "npm update",
"tslint": "gulp tslint"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.35",
"@types/sinon": "^9.0.11",
"@types/sinon-chai": "^3.2.5",
"chai": "^4.3.4",
"generator-generator": "^5.1.0",
"gulp": "^4.0.2",
"gulp-tslint": "^8.1.4",
"mocha": "^8.3.2",
"sinon": "^9.2.4",
"sinon-chai": "^3.5.0",
"tslint": "^6.1.3",
"typescript": "^4.2.3",
"vscode": "^1.1.37"
},
"dependencies": {
"array-uniq": "^2.1.0",
"diff": "^5.0.0",
"elegant-spinner": "^2.0.0",
"error-ex": "^1.3.2",
"figures": "^3.2.0",
"fix-path": "^3.0.0",
"is-fn": "^2.0.0",
"lodash": "^4.17.21",
"opn": "^6.0.0",
"read-pkg-up": "^7.0.1",
"run-async": "^2.4.1",
"semver": "^7.3.4",
"strip-ansi": "^6.0.0",
"yeoman-environment": "^2.10.3"
}
}