-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
135 lines (135 loc) · 4.67 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
{
"name": "dupchecker",
"displayName": "DupChecker",
"description": "Check duplicate lines and remove them if you need to keep the unique lines only",
"repository": {
"type": "git",
"url": "https://github.com/jianbingfang/vscode-dup-checker.git"
},
"homepage": "https://github.com/jianbingfang/vscode-dup-checker",
"version": "0.1.8",
"license": "MIT",
"author": {
"name": "Jianbing Fang",
"email": "jianbingfang@gmail.com"
},
"publisher": "jianbingfang",
"icon": "images/logo_128x128.png",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"keywords": [
"dupchecker",
"dup",
"duplicate",
"dedup",
"unique",
"deduplicate",
"distinct",
"checker"
],
"activationEvents": [
"onCommand:extension.checkDup",
"onCommand:extension.checkDupWithTrim",
"onCommand:extension.checkDupWithRegex",
"onCommand:extension.checkDupForAllFiles"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.checkDup",
"title": "Check Duplicates"
},
{
"command": "extension.checkDupWithTrim",
"title": "Check Duplicates With Trim Condition"
},
{
"command": "extension.checkDupWithRegex",
"title": "Check Duplicates With Regex Match"
},
{
"command": "extension.checkDupForAllFiles",
"title": "Check Duplicates (For All Files)"
}
],
"configuration": {
"title": "DupChecker",
"properties": {
"dupchecker.trimStart": {
"type": "boolean",
"default": true,
"description": "trim starting white spaces in each line, default: true"
},
"dupchecker.trimEnd": {
"type": "boolean",
"default": true,
"description": "trim ending white spaces in each line, default: true"
},
"dupchecker.ignoreCase": {
"type": "boolean",
"default": false,
"description": "ignore case when comparing lines, default: false"
},
"dupchecker.leaveEmptyLine": {
"type": "boolean",
"default": false,
"description": "leave an empty line after removing duplicates if true, or remove whole line(including line break) if false, default: true"
},
"dupchecker.removeAllDuplicates": {
"type": "boolean",
"default": false,
"description": "remove all duplicate lines including the first occurrence if true, default: false"
},
"dupchecker.ignoreLines": {
"type": "array",
"default": [],
"description": "ignore lines that contain these strings",
"items": {
"type": "string"
},
"scope": "resource"
},
"dupchecker.checkAllFilesInclude": {
"type": "string",
"default": "**",
"description": "GlobPattern for files to include in [Check Duplicates (For All Files)] mode"
},
"dupchecker.checkAllFilesExclude": {
"type": "string",
"default": "",
"description": "GlobPattern for files to exclude in [Check Duplicates (For All Files)] mode"
},
"dupchecker.checkAllFilesNumLimit": {
"type": "integer",
"default": 100,
"description": "Maximum number of files to include in [Check Duplicates (For All Files)] mode"
}
}
}
},
"bugs": {
"url": "https://github.com/jianbingfang/vscode-dup-checker/issues",
"email": "jianbingfang@gmail.com"
},
"scripts": {},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"@types/vscode": "^1.87.0",
"eslint": "^8.25.0",
"typescript": "^2.6.1",
"vscode-test": "^1.6.1"
},
"dependencies": {
"cbor-js": "^0.1.0",
"cuckoo-filter": "^1.1.4",
"is-glob": "^4.0.1",
"lodash": "^4.17.21",
"string-hash": "^1.1.3"
}
}