{
  "name": "atom-languageclient",
  "version": "1.16.1",
  "description": "Integrate Language Servers with Atom",
  "repository": "https://github.com/atom-ide-community/atom-languageclient",
  "license": "MIT",
  "main": "./build/lib/main",
  "types": "./build/lib/main.d.ts",
  "files": [
    "build/lib",
    "lib",
    "typings"
  ],
  "scripts": {
    "format": "prettier --write .",
    "test.format": "prettier . --check",
    "lint": "eslint . --fix",
    "test.lint": "eslint .",
    "clean": "shx rm -rf build && mkdirp build",
    "copy.typings": "shx cp -r ./typings ./build",
    "compile": "npm run copy.typings && tsc",
    "build": "npm run clean && npm run compile",
    "watch": "npm run compile -- --watch",
    "prepare": "npm run clean && npm run compile",
    "test": "npm run compile && atom --test build/test"
  },
  "prettier": "prettier-config-atomic",
  "atomTestRunner": "./test/runner",
  "dependencies": {
    "@types/rimraf": "^3.0.1",
    "atom-ide-base": "^3.3.0",
    "rimraf": "^3.0.2",
    "vscode-jsonrpc": "6.0.0",
    "vscode-languageserver-protocol": "3.16.0",
    "vscode-languageserver-types": "3.16.0",
    "zadeh": "3.0.0-beta.4"
  },
  "devDependencies": {
    "@types/atom": "^1.40.11",
    "@types/jasmine": "^3.8.1",
    "@types/node": "16.4.10",
    "atom-jasmine3-test-runner": "^5.2.7",
    "eslint-config-atomic": "1.16.2",
    "prettier-config-atomic": "^2.0.5",
    "shx": "^0.3.3",
    "spawk": "^1.7.1",
    "standard-language-server": "^0.1.0",
    "typescript": "~4.3.5"
  }
}
