-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·66 lines (66 loc) · 1.84 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
{
"name": "sort-lines-by-selection",
"displayName": "Sort Lines by Selection",
"description": "Sort lines based on the text selected in each line",
"icon": "doc/logo.png",
"version": "1.2.0",
"publisher": "earshinov",
"repository": "https://github.com/earshinov/vscode-sort-lines-by-selection",
"license": "MIT",
"engines": {
"vscode": "^1.10.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:sort-lines-by-selection.sortLinesBySelection",
"onCommand:sort-lines-by-selection.sortLinesBySelectionNatural"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "sort-lines-by-selection.sortLinesBySelection",
"title": "Sort Lines by Selection"
},
{
"command": "sort-lines-by-selection.sortLinesBySelectionNatural",
"title": "Sort Lines by Selection (Natural Sort)"
}
]
},
"scripts": {
"lint": "prettier --check src && eslint src/**/*.ts",
"compile": "tsc -p ./",
"pretest": "yarn run compile",
"test": "node ./out/test/runTest.js",
"vscode:prepublish": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/mocha": "^9.1.1",
"@types/node": "^6.0.40",
"@types/vscode": "^1.10.0",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"@vscode/test-electron": "^2.1.5",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsdoc": "^35.4.0",
"eslint-plugin-prettier": "^3.4.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.8.1",
"typescript": "^4.8.2",
"vsce": "^1.66.0"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "none"
}
}