-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.14 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
{
"name": "fibonacci-indent",
"displayName": "Fibonacci Indent",
"description": "Indent according to fibonacci sequence - the next indent level is the sum of previous 2.",
"version": "4.4.8",
"publisher": "inoric",
"repository": {
"type": "git",
"url": "https://github.com/inoric/vscode-fibonacci-indent.git"
},
"engines": {
"vscode": "^1.26.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension",
"contributes": {
"keybindings": [
{
"command": "extension.fibonacciIndent",
"key": "tab",
"mac": "tab",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"tslint": "^6.1.1",
"typescript": "^3.8.3",
"vscode": "^1.1.36"
}
}