-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
88 lines (88 loc) · 2.65 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "toggle-boolean",
"displayName": "Toggle Boolean",
"description": "Quickly toggle boolean values. Inspired by the vim plugin, toggle-bool.",
"icon": "images/icon_128.png",
"version": "0.10.0",
"publisher": "silesky",
"engines": {
"vscode": "^1.42.0"
},
"repository": {
"type": "git",
"url": "https://github.com/silesky/vscode-toggle-bool.git"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.toggleBool"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Toggle Boolean",
"properties": {
"toggleboolean.mapping": {
"title": "Toggle Boolean Configuration",
"type": "object",
"description": "Map of arguments in {\"true\": \"false\"} format.",
"default": {
"0": 1,
"1": 0,
"true": false,
"false": true,
"yes": "no",
"no": "yes",
"on": "off",
"off": "on"
}
}
}
},
"keybindings": [
{
"command": "extension.toggleBool",
"key": "alt+b",
"when": "editorTextFocus"
}
],
"commands": [
{
"command": "extension.toggleBool",
"title": "Toggle Boolean"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile && node out/test/runTests.js",
"lint": "tsc --noEmit && eslint ./src/**/**",
"fix": "npm run lint -- --fix",
"upgrade-interactive": "npm-check --update"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.25",
"@types/vscode": "1.42.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"glob": "^7.1.6",
"mocha": "^8.2.1",
"npm-check": "^5.9.2",
"prettier": "^2.1.2",
"source-map-support": "^0.5.19",
"typescript": "^4.1.3",
"vscode-test": "^1.5.0"
},
"dependencies": {
"npm": "^7.5.2"
}
}