forked from neoclide/coc.nvim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 2.99 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "coc.nvim-master",
"version": "0.0.82",
"description": "LSP based intellisense engine for neovim & vim8.",
"main": "./build/index.js",
"engines": {
"node": ">=16.18.0"
},
"type": "commonjs",
"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 <[email protected]>",
"bugs": {
"url": "https://github.com/neoclide/coc.nvim/issues"
},
"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",
"mjs",
"js"
],
"transform": {
"^.+\\.tsx?$": [
"@swc/jest"
]
},
"testRegex": "src/__tests__/.*\\.(test|spec)\\.ts$",
"coverageReporters": [
"text",
"lcov"
],
"coverageDirectory": "./coverage/"
},
"devDependencies": {
"@swc/jest": "^0.2.36",
"@types/cli-table": "^0.3.4",
"@types/debounce": "^1.2.4",
"@types/fb-watchman": "^2.0.4",
"@types/follow-redirects": "^1.14.4",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.25",
"@types/semver": "^7.5.8",
"@types/unidecode": "^0.1.3",
"@types/uuid": "^9.0.8",
"@types/which": "^3.0.4",
"@typescript-eslint/eslint-plugin": "<8",
"@typescript-eslint/parser": "<8",
"esbuild": "^0.23.0",
"eslint": "<9",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-jsdoc": "^48.11.0",
"jest": "29.7.0",
"typescript": "^5.5.4",
"vscode-languageserver": "^9.0.1"
},
"dependencies": {
"@chemzqm/neovim": "^6.1.2",
"ansi-styles": "^5.2.0",
"bytes": "^3.1.2",
"cli-table": "^0.3.11",
"content-disposition": "^0.5.4",
"debounce": "^1.2.1",
"decompress-response": "^6.0.0",
"fast-diff": "^1.3.0",
"fb-watchman": "^2.0.2",
"follow-redirects": "^1.15.6",
"glob": "^10.3.15",
"http-proxy-agent": "^5.0.0",
"https-proxy-agent": "^5.0.0",
"iconv-lite": "^0.6.3",
"jsonc-parser": "^3.3.1",
"marked": "^7.0.5",
"minimatch": "^9.0.4",
"semver": "^7.6.3",
"strip-ansi": "^6.0.1",
"tar": "^6.2.1",
"tslib": "^2.6.3",
"unidecode": "^1.0.1",
"unzip-stream": "^0.3.4",
"uuid": "^9.0.1",
"vscode-languageserver-protocol": "^3.17.5",
"vscode-languageserver-textdocument": "^1.0.11",
"vscode-languageserver-types": "^3.17.5",
"vscode-uri": "^3.0.8",
"which": "^4.0.0"
}
}