-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
101 lines (101 loc) · 2.59 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
{
"name": "flutter-clean-architecture",
"displayName": "Flutter Feature Scaffolding",
"description": "Add new feature easily with well structured directories (Clean Architecture pattern)",
"version": "2.1.5",
"publisher": "KiritchoukC",
"repository": {
"type": "git",
"url": "https://github.com/KiritchoukC/vscode-ext_flutter-clean-architecture"
},
"license": "MIT",
"engines": {
"vscode": "^1.31.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"clean-architecture",
"dart",
"flutter",
"bloc",
"state-management"
],
"icon": "assets/logo.png",
"activationEvents": [
"onCommand:extension.new-feature",
"workspaceContains:**/pubspec.yaml"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.new-feature-bloc",
"title": "Bloc: New Feature",
"category": "Flutter Clean Architecture",
"icon": "assets/logo.png"
},
{
"command": "extension.new-feature-cubit",
"title": "Cubit: New Feature",
"category": "Flutter Clean Architecture",
"icon": "assets/logo.png"
}
],
"menus": {
"explorer/context": [
{
"command": "extension.new-feature-bloc",
"group": "cleanArchitectureGroup@1",
"when": "explorerResourceIsFolder"
},
{
"command": "extension.new-feature-cubit",
"group": "cleanArchitectureGroup@2",
"when": "explorerResourceIsFolder"
}
]
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile",
"test": "node ./out/test/runTest.js",
"deploy": "vsce publish --yarn"
},
"devDependencies": {
"@types/change-case": "^2.3.1",
"@types/glob": "^7.1.1",
"@types/js-yaml": "^3.12.1",
"@types/lodash": "^4.14.121",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.6",
"@types/node": "^12.7.8",
"@types/rimraf": "^2.0.2",
"@types/semver": "^6.0.2",
"@types/vscode": "^1.31.0",
"cz-conventional-changelog": "^3.0.2",
"glob": "^7.1.4",
"mocha": "^6.1.4",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vsce": "^1.81.1",
"vscode-test": "^1.2.0"
},
"dependencies": {
"change-case": "^3.1.0",
"cz-conventional-changelog": "^3.0.2",
"js-yaml": "^3.13.1",
"lodash": "^4.17.21",
"mkdirp": "^0.5.1",
"semver": "^6.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}