forked from atom/bracket-matcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"name": "bracket-matcher",
"version": "0.82.0",
"main": "./lib/main",
"description": "Highlight the matching bracket for the `(){}[]` character under the cursor. Move the cursor to the matching bracket with `ctrl-m`.",
"repository": "https://github.com/atom/bracket-matcher",
"license": "MIT",
"engines": {
"atom": "*"
},
"dependencies": {
"first-mate": "^5",
"underscore-plus": "1.x"
},
"devDependencies": {
"coffeelint": "^1.9.7"
},
"configSchema": {
"autocompleteBrackets": {
"type": "boolean",
"default": true,
"description": "Autocomplete bracket and quote characters, such as `(` and `)`, and `\"`."
},
"autocompleteSmartQuotes": {
"type": "boolean",
"default": true,
"description": "Autocomplete smart quote characters, such as `“` and `”`, and `«` and `»`."
},
"wrapSelectionsInBrackets": {
"type": "boolean",
"default": true,
"description": "Wrap selected text in brackets or quotes when the editor contains selections and the opening bracket or quote is typed."
}
}
}