-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
62 lines (62 loc) · 1.57 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
{
"name": "perltidy-more",
"displayName": "perltidy-more",
"description": "Extended perltidy",
"version": "0.8.2",
"publisher": "Kaktus",
"engines": {
"vscode": "^1.23.0"
},
"icon": "logo.png",
"categories": [
"Formatters"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "perltidy-more configuration",
"properties": {
"perltidy-more.autoDisable": {
"type": "boolean",
"description": "Disable perltidy for projects without a local .perltidyrc"
},
"perltidy-more.executable": {
"type": "string",
"default": "perltidy",
"description": "Path to perltidy binary"
},
"perltidy-more.profile": {
"type": "string",
"description": "Path to .perltidyrc file. Use \".../.perltidyrc\" to search profile in current (project) dir and upwards."
}
}
},
"commands": [
{
"command": "perltidy-more.tidy",
"title": "perltidy"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^4.4.3",
"vscode": "^1.1.30",
"mocha": "^2.3.3",
"@types/node": "^16.9.6",
"@types/mocha": "^2.2.32"
},
"repository": {
"type": "git",
"url": "https://github.com/kak-tus/perltidy-more.git"
}
}