UNPKG

1.53 kBJSONView Raw
1{
2 "name": "atom-languageclient",
3 "version": "1.16.1",
4 "description": "Integrate Language Servers with Atom",
5 "repository": "https://github.com/atom-ide-community/atom-languageclient",
6 "license": "MIT",
7 "main": "./build/lib/main",
8 "types": "./build/lib/main.d.ts",
9 "files": [
10 "build/lib",
11 "lib",
12 "typings"
13 ],
14 "scripts": {
15 "format": "prettier --write .",
16 "test.format": "prettier . --check",
17 "lint": "eslint . --fix",
18 "test.lint": "eslint .",
19 "clean": "shx rm -rf build && mkdirp build",
20 "copy.typings": "shx cp -r ./typings ./build",
21 "compile": "npm run copy.typings && tsc",
22 "build": "npm run clean && npm run compile",
23 "watch": "npm run compile -- --watch",
24 "prepare": "npm run clean && npm run compile",
25 "test": "npm run compile && atom --test build/test"
26 },
27 "prettier": "prettier-config-atomic",
28 "atomTestRunner": "./test/runner",
29 "dependencies": {
30 "@types/rimraf": "^3.0.1",
31 "atom-ide-base": "^3.3.0",
32 "rimraf": "^3.0.2",
33 "vscode-jsonrpc": "6.0.0",
34 "vscode-languageserver-protocol": "3.16.0",
35 "vscode-languageserver-types": "3.16.0",
36 "zadeh": "3.0.0-beta.4"
37 },
38 "devDependencies": {
39 "@types/atom": "^1.40.11",
40 "@types/jasmine": "^3.8.1",
41 "@types/node": "16.4.10",
42 "atom-jasmine3-test-runner": "^5.2.7",
43 "eslint-config-atomic": "1.16.2",
44 "prettier-config-atomic": "^2.0.5",
45 "shx": "^0.3.3",
46 "spawk": "^1.7.1",
47 "standard-language-server": "^0.1.0",
48 "typescript": "~4.3.5"
49 }
50}