-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.12 KB
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
{
"name": "pasteregex",
"displayName": "PasteRegEx",
"description": "This extension allows you to run a regex statement on your clipboard text before pasting that text content",
"version": "0.0.5",
"publisher": "ldsands",
"author": {
"name": "Levi Sands"
},
"keywords": [
"RegEx",
"edit",
"text",
"formatter",
"plain text"
],
"engines": {
"vscode": "^1.44.0"
},
"icon": "images/PasteRegEx.png",
"categories": [
"Other"
],
"license": "SEE LICENSE IN LICENSE.txt",
"homepage": "https://github.com/ldsands/PasteRegEx/blob/master/README.md",
"bugs": {
"url": "https://github.com/ldsands/PasteRegEx/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ldsands/PasteRegEx.git"
},
"activationEvents": [
"onCommand:PasteRegEx.rmHangingSpaces",
"onCommand:PasteRegEx.rmNewLines",
"onCommand:PasteRegEx.rmHyphenLineEnd",
"onCommand:PasteRegEx.rmSentenceBreaks",
"onCommand:PasteRegEx.rmExtraSpaces"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "PasteRegEx.rmHangingSpaces",
"title": "PasteRegEx: Remove Hanging Spaces"
},
{
"command": "PasteRegEx.rmNewLines",
"title": "PasteRegEx: Remove New Lines"
},
{
"command": "PasteRegEx.rmHyphenLineEnd",
"title": "PasteRegEx: Remove Hyphen word break"
},
{
"command": "PasteRegEx.rmSentenceBreaks",
"title": "PasteRegEx: Remove newlines in mid-sentence"
},
{
"command": "PasteRegEx.rmExtraSpaces",
"title": "PasteRegEx: Removes more than one space with one space"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"@types/vscode": "^1.44.0",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"glob": "^7.1.6",
"mocha": "^10.8.2",
"typescript": "^3.8.3",
"vscode-test": "^1.3.0"
}
}