forked from aws/language-servers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.4 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.4 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
{
"name": "@aws/lsp-core",
"version": "0.0.3",
"description": "Core library, contains common code and utilities",
"main": "out/index.js",
"repository": {
"type": "git",
"url": "https://github.com/aws/language-servers"
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"engines": {
"node": ">=18.0.0"
},
"files": [
"out/**/*",
"CHANGELOG.md",
"SECURITY.md",
"NOTICE"
],
"scripts": {
"compile": "tsc --build",
"test": "npm run test-unit",
"test-unit": "mocha --timeout 0 \"./out/**/*.test.js\"",
"prepack": "shx cp ../../LICENSE ../../NOTICE ../../SECURITY.md ."
},
"dependencies": {
"@gerhobbelt/gitignore-parser": "^0.2.0-9",
"jose": "^5.2.4",
"cross-spawn": "7.0.6",
"request-light": "^0.8.0",
"vscode-languageserver-textdocument": "^1.0.8",
"vscode-languageserver-types": "^3.17.3",
"vscode-uri": "^3.1.0"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/cross-spawn": "^6.0.2",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.9",
"@types/mock-fs": "^4.13.1",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"mocha": "^11.0.1",
"mock-fs": "^5.2.0",
"sinon": "^19.0.2",
"ts-sinon": "^2.0.2"
}
}