mirror of
https://github.com/amix/vimrc
synced 2025-07-27 23:45:00 +08:00
Update Coc.nvim
This commit is contained in:
@ -1,17 +1,124 @@
|
||||
{
|
||||
"name": "coc.nvim-release",
|
||||
"name": "coc.nvim-master",
|
||||
"version": "0.0.81",
|
||||
"description": "LSP based intellisense engine for neovim & vim8.",
|
||||
"main": "./build/index.js",
|
||||
"engines": {
|
||||
"node": ">=12.12.0"
|
||||
},
|
||||
"scripts": {
|
||||
"lint": "eslint . --ext .ts --quiet",
|
||||
"lint:typecheck": "tsc -p tsconfig.json",
|
||||
"build": "node esbuild.js",
|
||||
"test": "./node_modules/.bin/jest --forceExit",
|
||||
"test-build": "./node_modules/.bin/jest --coverage --forceExit",
|
||||
"prepare": "node esbuild.js"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/neoclide/coc.nvim.git"
|
||||
},
|
||||
"keywords": [
|
||||
"complete",
|
||||
"neovim"
|
||||
],
|
||||
"author": "Qiming Zhao <chemzqm@gmail.com>",
|
||||
"bugs": {
|
||||
"url": "https://github.com/neoclide/coc.nvim/issues"
|
||||
},
|
||||
"homepage": "https://github.com/neoclide/coc.nvim#readme"
|
||||
"homepage": "https://github.com/neoclide/coc.nvim#readme",
|
||||
"jest": {
|
||||
"globals": {
|
||||
"__TEST__": true
|
||||
},
|
||||
"projects": [
|
||||
"<rootDir>"
|
||||
],
|
||||
"watchman": false,
|
||||
"clearMocks": true,
|
||||
"globalSetup": "./jest.js",
|
||||
"testEnvironment": "node",
|
||||
"coveragePathIgnorePatterns": [
|
||||
"<rootDir>/src/__tests__/*"
|
||||
],
|
||||
"moduleFileExtensions": [
|
||||
"ts",
|
||||
"tsx",
|
||||
"json",
|
||||
"js"
|
||||
],
|
||||
"transform": {
|
||||
"^.+\\.tsx?$": [
|
||||
"@swc/jest"
|
||||
]
|
||||
},
|
||||
"testRegex": "src/__tests__/.*\\.(test|spec)\\.ts$",
|
||||
"coverageReporters": [
|
||||
"text",
|
||||
"lcov"
|
||||
],
|
||||
"coverageDirectory": "./coverage/"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@swc/core": "^1.2.183",
|
||||
"@swc/jest": "^0.2.21",
|
||||
"@types/cli-table": "^0.3.0",
|
||||
"@types/debounce": "^3.0.0",
|
||||
"@types/fb-watchman": "^2.0.0",
|
||||
"@types/fs-extra": "^9.0.6",
|
||||
"@types/glob": "^7.2.0",
|
||||
"@types/jest": "^27.0.3",
|
||||
"@types/marked": "^4.0.1",
|
||||
"@types/minimatch": "^3.0.3",
|
||||
"@types/mkdirp": "^1.0.1",
|
||||
"@types/node": "12.12.12",
|
||||
"@types/semver": "^7.3.4",
|
||||
"@types/tar": "^4.0.5",
|
||||
"@types/uuid": "^8.3.0",
|
||||
"@types/which": "^1.3.2",
|
||||
"@typescript-eslint/eslint-plugin": "^5.20.0",
|
||||
"@typescript-eslint/parser": "^5.20.0",
|
||||
"bser": "^2.1.1",
|
||||
"esbuild": "^0.14.25",
|
||||
"eslint": "^8.14.0",
|
||||
"eslint-plugin-jest": "^26.1.5",
|
||||
"eslint-plugin-jsdoc": "^39.2.8",
|
||||
"jest": "27.4.5",
|
||||
"typescript": "^4.6.3",
|
||||
"vscode-languageserver": "7.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@chemzqm/neovim": "^5.7.9",
|
||||
"@chemzqm/string-width": "^5.1.2",
|
||||
"ansi-styles": "^5.0.0",
|
||||
"bytes": "^3.1.0",
|
||||
"cli-table": "^0.3.4",
|
||||
"content-disposition": "^0.5.3",
|
||||
"debounce": "^1.2.0",
|
||||
"decompress-response": "^6.0.0",
|
||||
"fast-diff": "^1.2.0",
|
||||
"fb-watchman": "^2.0.1",
|
||||
"follow-redirects": "^1.14.8",
|
||||
"fs-extra": "^9.0.1",
|
||||
"glob": "^7.2.0",
|
||||
"http-proxy-agent": "^5.0.0",
|
||||
"https-proxy-agent": "^5.0.0",
|
||||
"isuri": "^2.0.3",
|
||||
"jsonc-parser": "^3.0.0",
|
||||
"log4js": "^6.4.0",
|
||||
"marked": "^4.0.12",
|
||||
"minimatch": "^3.0.4",
|
||||
"semver": "^7.3.2",
|
||||
"strip-ansi": "^6.0.0",
|
||||
"tar": "^6.1.9",
|
||||
"tslib": "^2.0.3",
|
||||
"unidecode": "^0.1.8",
|
||||
"unzip-stream": "^0.3.1",
|
||||
"uuid": "^7.0.3",
|
||||
"vscode-languageserver-protocol": "^3.16.0",
|
||||
"vscode-languageserver-textdocument": "^1.0.3",
|
||||
"vscode-languageserver-types": "^3.16.0",
|
||||
"vscode-uri": "^2.1.2",
|
||||
"which": "^2.0.2"
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user