massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-json / node_modules / vscode-languageserver / package.json
1 {
2         "name": "vscode-languageserver",
3         "description": "Language server implementation for node",
4         "version": "7.0.0",
5         "author": "Microsoft Corporation",
6         "license": "MIT",
7         "repository": {
8                 "type": "git",
9                 "url": "https://github.com/Microsoft/vscode-languageserver-node.git",
10                 "directory": "server"
11         },
12         "bugs": {
13                 "url": "https://github.com/Microsoft/vscode-languageserver-node/issues"
14         },
15         "main": "./lib/node/main.js",
16         "browser": {
17                 "./lib/node/main.js": "./lib/browser/main.js"
18         },
19         "typings": "./lib/common/api.d.ts",
20         "bin": {
21                 "installServerIntoExtension": "./bin/installServerIntoExtension"
22         },
23         "dependencies": {
24                 "vscode-languageserver-protocol": "3.16.0"
25         },
26         "scripts": {
27                 "prepublishOnly": "git clean -xfd . && npm install && npm run clean && npm run compile && npm test",
28                 "postpublish": "node ../build/npm/post-publish.js",
29                 "compile": "node ../build/bin/tsc -b ./tsconfig.json",
30                 "watch": "node ../build/bin/tsc -b ./tsconfig-watch.json -w",
31                 "clean": "node ../node_modules/rimraf/bin.js lib",
32                 "test": "node ../node_modules/mocha/bin/_mocha",
33                 "preversion": "npm test"
34         }
35 }