-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.71 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-imports-by-path",
"displayName": "Sort imports by path",
"description": "Sort imports by absolute paths",
"publisher": "richard-bidin",
"repository": {
"type": "git",
"url": "https://github.com/nidib/sort-imports-by-path"
},
"version": "0.2.4",
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:sort-imports-by-path.sortImportsByPath"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Sort imports by path",
"properties": {
"sortImportsByPath.groups": {
"type": ["array", null],
"markdownDescription": "Groups each item in the array and sort (alphabetically) its children that starts with the path provided.<br><br> See README.md for an example",
"items": {
"type": "array",
"items": {
"type": "string"
}
},
"default": null
}
}
},
"commands": [{
"command": "sort-imports-by-path.sortImportsByPath",
"title": "Sort imports by path"
}]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"getmocks": "mkdir -p ./out/__tests__/mocks && cp ./src/__tests__/mocks/* \"$_\"",
"compile": "npm run getmocks && tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/__tests__/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.63.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"typescript": "^4.5.4",
"@vscode/test-electron": "^2.0.3"
}
}