forked from llali/generator-azuredatastudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
{
"name": "generator-azuredatastudio",
"version": "0.11.2",
"description": "Yeoman generator for Azure Data Studio Extensions",
"keywords": [
"yeoman-generator",
"vscode",
"azuredatastudio",
"visual studio code",
"azure data studio",
"vs code",
"extensions"
],
"repository": {
"type": "git",
"url": "https://github.com/llali/generator-azuredatastudio"
},
"bugs": {
"url": "https://github.com/llali/generator-azuredatastudio/issues"
},
"homepage": "https://docs.microsoft.com/en-us/sql/azure-data-studio",
"license": "MIT",
"author": {
"name": "Azure Data Studio Team",
"url": "https://github.com/Microsoft/azuredatastudio"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha",
"prepublish": "npm test",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"dependencies": {
"assert-plus": "^1.0.0",
"chalk": "^2.3.1",
"request": "^2.81.0",
"sanitize-filename": "^1.6.1",
"sax": "^1.2.2",
"yeoman-generator": "^0.24.1",
"yosay": "^1.2.1"
},
"devDependencies": {
"@types/mocha": "^2.2.48",
"@types/node": "^6.0.101",
"mocha": "^3.1.2",
"yeoman-assert": "^2.2.1",
"yeoman-test": "^1.5.1",
"yo": "^1.8.5"
}
}