-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
154 lines (154 loc) · 4.11 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "glean",
"displayName": "glean",
"description": "The extension provides refactoring tools for your React codebase",
"version": "4.8.0",
"publisher": "wix",
"engines": {
"vscode": "^1.23.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"javascript",
"react",
"jsx",
"refactoring",
"typescript",
"cleancode"
],
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact"
],
"main": "./out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Glean",
"properties": {
"glean.jsModuleSystem": {
"type": "string",
"default": "esm",
"description": "Module system to be used whem extracting Javascript"
},
"glean.jsFilesExtensions": {
"type": [
"string"
],
"default": [
"js",
"jsx",
"ts",
"tsx"
],
"description": "File extensions to be treated as Javascript files"
},
"glean.switchToTarget": {
"type": "boolean",
"default": false,
"description": "Specifies whether to switch to the target file after extracting the content or not"
},
"glean.experiments": {
"type": [
"array"
],
"items": {
"type": "string"
},
"default": [],
"description": "Active experimental features. Please see https://github.com/wix/vscode-glean/ for list of experimental features"
},
"glean.showConversionWarning": {
"type": "boolean",
"default": true,
"description": "Specifies whether to show conversion warning or not"
},
"glean.useExportDefault": {
"type": "boolean",
"default": false,
"description": "Specifies export function as a default"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@babel/helper-module-imports": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@semantic-release/changelog": "^2.1.2",
"@semantic-release/git": "^5.0.0",
"@semantic-release/github": "^4.4.2",
"@types/babel-traverse": "^6.25.4",
"@types/babel-types": "^7.0.4",
"@types/chai": "^4.1.6",
"@types/mocha": "^2.2.48",
"@types/node": "^7.0.71",
"@types/sinon": "^4.3.0",
"@types/sinon-chai": "^2.7.29",
"chai": "^4.2.0",
"prettier": "1.15.3",
"semantic-release": "^15.13.31",
"semantic-release-vsce": "^2.1.2",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "^2.6.1",
"vscode": "^1.1.36"
},
"dependencies": {
"@babel/core": "^7.1.2",
"@babel/parser": "^7.1.2",
"@babel/template": "^7.1.2",
"@babel/traverse": "^7.1.0",
"@babel/types": "^7.1.2",
"gitignore-globs": "^0.1.1",
"gitignore-to-glob": "^0.3.0",
"glob": "^7.1.3",
"line-column": "^1.0.2",
"mkdirp": "^0.5.1",
"prepend": "^1.0.2",
"prepend-file": "^1.3.1",
"relative": "^3.0.2",
"vscode-cache": "^0.3.0"
},
"release": {
"verifyConditions": [
"semantic-release-vsce",
"@semantic-release/github"
],
"prepare": [
{
"path": "@semantic-release/changelog",
"changelogFile": "CHANGELOG.md"
},
"@semantic-release/git",
{
"path": "semantic-release-vsce",
"packageVsix": "vscode-glean.vsix"
}
],
"publish": [
"semantic-release-vsce",
{
"path": "@semantic-release/github",
"assets": "vscode-glean.vsix"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/wix/vscode-glean.git"
},
"icon": "assets/icon.png"
}