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
47 lines (47 loc) · 1.27 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.27 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
{
"name": "@aws/lsp-json",
"version": "0.1.20",
"description": "JSON Language Server",
"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": "ts-mocha -b \"./src/**/*.test.ts\"",
"test:coverage": "c8 ts-mocha -b \"./src/**/*.test.ts\"",
"coverage:report": "c8 report --reporter=html --reporter=text",
"prepack": "shx cp ../../LICENSE ../../NOTICE ../../SECURITY.md ."
},
"dependencies": {
"@aws/language-server-runtimes": "^0.2.129",
"@aws/lsp-core": "^0.0.16",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.8"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5",
"tabWidth": 4,
"singleQuote": true,
"semi": false,
"bracketSpacing": true,
"arrowParens": "avoid",
"endOfLine": "lf"
},
"devDependencies": {
"c8": "^10.1.2"
}
}