-
-
Notifications
You must be signed in to change notification settings - Fork 961
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.04 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.04 KB
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
118
{
"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 . --quiet --concurrency auto",
"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",
"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.39",
"@types/cli-table": "^0.3.4",
"@types/debounce": "^1.2.4",
"@types/fb-watchman": "^2.0.6",
"@types/follow-redirects": "^1.14.4",
"@types/jest": "^30.0.0",
"@types/node": "^18.19.25",
"@types/semver": "^7.7.1",
"@types/unidecode": "^1.1.0",
"@types/uuid": "^9.0.8",
"@types/which": "^3.0.4",
"esbuild": "^0.27.4",
"eslint": "10.1.0",
"eslint-formatter-unix": "^9.0.1",
"eslint-plugin-jest": "^29.15.1",
"eslint-plugin-jsdoc": "^62.8.1",
"globals": "^16.5.0",
"jest": "30.3.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.58.0",
"vscode-languageserver": "^10.0.0-next.17"
},
"dependencies": {
"@chemzqm/neovim": "^6.3.6",
"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.11",
"glob": "10.5",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.6",
"iconv-lite": "^0.7.2",
"jsonc-parser": "^3.3.1",
"marked": "^7.0.5",
"minimatch": "^9.0.4",
"semver": "^7.7.4",
"strip-ansi": "^6.0.1",
"tar": "^7.5.11",
"tslib": "^2.8.1",
"unidecode": "^1.1.0",
"unzip-stream": "^0.3.4",
"uuid": "^9.0.1",
"vscode-languageserver-protocol": "^3.17.6-next.17",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-languageserver-types": "^3.17.6-next.6",
"vscode-uri": "^3.1.0",
"which": "^4.0.0"
}
}