-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "coc-utils",
"version": "0.0.17",
"description": "Utilities for coc.nvim extensions",
"main": "out/index.js",
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"extract-zip": "^1.6.7",
"follow-redirects": "^1.7.0",
"rimraf": "^2.6.3",
"tunnel": "0.0.6",
"vscode-jsonrpc": ">=4.0.0",
"vscode-languageserver-protocol": ">=3.14.0",
"which": "^2.0.2"
},
"devDependencies": {
"@types/extract-zip": "^1.6.2",
"@types/follow-redirects": "^1.8.0",
"@types/node": "^10.3.3",
"@types/rimraf": "^2.0.2",
"@types/tunnel": "0.0.1",
"@types/which": "^1.3.2",
"typescript": "^3.0.3",
"coc.nvim": "^0.0.77"
},
"files": [
"out"
],
"repository": {
"type": "git",
"url": "git+https://github.com/coc-extensions/coc-utils.git"
},
"keywords": [
"extension",
"utility"
],
"categories": [
"Programming Languages",
"coc.nvim"
],
"author": "Yatao Li",
"license": "MIT",
"bugs": {
"url": "https://github.com/coc-extensions/coc-utils/issues"
},
"homepage": "https://github.com/coc-extensions/coc-utils#readme"
}