.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pairs / package.json
1 {
2   "name": "coc-pairs",
3   "version": "1.3.0",
4   "description": "Auto pair extension for coc.nvim",
5   "main": "lib/index.js",
6   "publisher": "chemzqm",
7   "repository": {
8     "type": "git",
9     "url": "https://github.com/neoclide/coc-pairs.git"
10   },
11   "keywords": [
12     "coc.nvim",
13     "autopair"
14   ],
15   "engines": {
16     "coc": "^0.0.80"
17   },
18   "scripts": {
19     "clean": "rimraf lib",
20     "build": "tsc -p tsconfig.json",
21     "prepare": "tsc -p tsconfig.json"
22   },
23   "activationEvents": [
24     "*"
25   ],
26   "contributes": {
27     "configuration": {
28       "type": "object",
29       "properties": {
30         "pairs.disableLanguages": {
31           "type": "array",
32           "items": {
33             "type": "string"
34           },
35           "default": [],
36           "description": "A list of languages IDs to disable this extension on"
37         },
38         "pairs.enableCharacters": {
39           "type": "array",
40           "items": {
41             "type": "string"
42           },
43           "default": [
44             "(",
45             "[",
46             "{",
47             "<",
48             "'",
49             "\"",
50             "`"
51           ],
52           "description": "Enabled character list for keymap."
53         },
54         "pairs.alwaysPairCharacters": {
55           "type": "array",
56           "items": {
57             "type": "string"
58           },
59           "default": [],
60           "description": "Characters that should be paired without check for next character."
61         },
62         "pairs.enableBackspace": {
63           "type": "boolean",
64           "description": "Remap your backspce to delete paired characters when necessary, won't work when <bs> already mapped.",
65           "default": true
66         }
67       }
68     }
69   },
70   "author": "chemzqm@gmail.com",
71   "license": "MIT",
72   "devDependencies": {
73     "@chemzqm/tsconfig": "^0.0.3",
74     "@types/node": "^11.11.7",
75     "coc.nvim": "^0.0.80",
76     "rimraf": "^2.6.3",
77     "tslint": "^5.14.0",
78     "typescript": "^4.1.3"
79   },
80   "dependencies": {}
81 }