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
32 lines (32 loc) · 1.09 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.09 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
{
"name": "@aws/hello-world-lsp-runtimes",
"version": "0.0.1",
"description": "Hello World Language Server Runtimes",
"main": "out/standalone.js",
"scripts": {
"package": "npm run compile && npm run webpack",
"compile": "tsc --build",
"clean": "rm -rf out/ bin/ tsconfig.tsbuildinfo",
"lint": "npm run lint:bundle:webworker",
"lint:bundle:webworker": "webpack && eslint out/hello-world-lsp-webworker.js",
"test": "npm run test-integ",
"test-integ": "npm run package && mocha --timeout 5000 \"./out/**/*Integ.test.js\"",
"webpack": "webpack"
},
"dependencies": {
"@aws/hello-world-lsp": "^0.0.1",
"@aws/language-server-runtimes": "^0.2.74"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.9",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"mocha": "^11.0.1",
"ts-loader": "^9.4.4",
"ts-lsp-client": "^1.0.3",
"webpack": "^5.94.0",
"webpack-cli": "^6.0.1"
}
}