-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 973 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 973 Bytes
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
{
"name": "@aws/hello-world-lsp",
"version": "0.0.1",
"description": "Hello World Server",
"main": "out/index.js",
"scripts": {
"compile": "tsc --build",
"lint": "npm run lint:src && npm run lint:bundle:webworker",
"lint:bundle:webworker": "webpack --config webpack.lint.config.js && eslint bundle/hello-world-lsp-webworker.js # Verify compatibility with web runtime target",
"lint:src": "eslint src/ --ext .ts,.tsx",
"test": "ts-mocha -b \"./src/**/*.test.ts\"",
"test:coverage": "c8 ts-mocha -b \"./src/**/*.test.ts\"",
"coverage:report": "c8 report --reporter=html --reporter=text"
},
"dependencies": {
"@aws/language-server-runtimes": "^0.3.14",
"vscode-languageserver": "^9.0.1"
},
"devDependencies": {
"c8": "^10.1.2",
"ts-loader": "^9.4.4",
"ts-mocha": "^11.1.0",
"webpack": "^5.94.0",
"webpack-cli": "^6.0.1"
}
}