forked from aws/language-server-runtimes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.58 KB
/
package.json
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
{
"name": "@aws/language-server-runtimes",
"version": "0.1.1",
"description": "Runtimes to host Language Servers for AWS",
"main": "out/runtimes/index.js",
"repository": {
"type": "git",
"url": "https://github.com/aws/language-server-runtimes"
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"compile": "tsc --build",
"prepack": "npm run compile",
"test:unit": "ts-mocha -b 'src/**/*.test.ts'",
"test:prettier": "prettier . --check",
"test": "npm run test:prettier && npm run test:unit",
"fix:prettier": "prettier . --write",
"prepare": "husky install"
},
"dependencies": {
"jose": "^5.2.3",
"rxjs": "^7.8.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.11"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.9",
"assert": "^2.0.0",
"husky": "^9.0.11",
"prettier": "3.2.5",
"sinon": "^17.0.1",
"ts-mocha": "^10.0.0",
"ts-sinon": "^2.0.2",
"typescript": "^5.2.2"
},
"typesVersions": {
"*": {
"browser": [
"./out/runtimes/webworker.d.ts"
]
}
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5",
"tabWidth": 4,
"singleQuote": true,
"semi": false,
"bracketSpacing": true,
"arrowParens": "avoid",
"endOfLine": "lf"
}
}