-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
96 lines (96 loc) · 2.56 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
{
"name": "ts-barrelr",
"displayName": "ts-barrelr",
"description": "Barreler for typescript apps",
"version": "1.3.0",
"publisher": "mikerhyssmith",
"repository": "https://github.com/mikerhyssmith/ts-barrelr",
"icon": "icon/barrelr.png",
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.barrel"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.barrel",
"title": "Barrel"
}
],
"keybindings": [
{
"command": "extension.barrel",
"key": "ctrl+alt+b",
"mac": "cmd+alt+b",
"when": "editorTextFocus"
}
],
"menus": {
"explorer/context": [
{
"when": "explorerResourceIsFolder",
"command": "extension.barrel",
"group": "7_modification"
}
]
},
"configuration": {
"type": "object",
"title": "Barrelr configuration",
"properties": {
"barrelr.useDoubleQuotes": {
"type": "boolean",
"default": false,
"description": "Use double quotes for imports in barrels."
},
"barrelr.useSemiColons": {
"type": "boolean",
"default": true,
"description": "Use semi colons at the end of each import."
},
"barrelr.lineEnding": {
"type": "string",
"enum": [
"CRLF",
"LF"
],
"default": "CRLF",
"description": "Select line ending to use"
},
"barrelr.excludeFileRegex": {
"type": "string",
"default": "(\\.spec\\.|\\.test\\.|\\.e2e\\.)",
"description": "Regular expression for excluding files or folders from barrels."
},
"barrelr.fileExtensionRegex": {
"type": "string",
"default": ".tsx?$",
"description": "Regular expression for file extensions that will be included in barrels."
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.3",
"@types/sinon": "^9.0.5",
"mocha": "^8.1.3",
"sinon": "^9.0.3",
"tslint": "^6.1.3",
"typescript": "^4.0.2",
"vscode": "^1.1.37"
},
"dependencies": {}
}