UNPKG

1.48 kBJSONView Raw
1{
2 "name": "vscode-languageserver",
3 "description": "Language server implementation for node",
4 "version": "9.0.1",
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 "devDependencies": {
24 "vscode-languageserver-textdocument": "1.0.11"
25 },
26 "dependencies": {
27 "vscode-languageserver-protocol": "3.17.5"
28 },
29 "scripts": {
30 "prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",
31 "prepack": "npm run all:publish",
32 "compile": "node ../build/bin/tsc -b ./tsconfig.json",
33 "watch": "node ../build/bin/tsc -b ./tsconfig.watch.json -w",
34 "clean": "node ../node_modules/.bin/rimraf lib",
35 "lint": "node ../node_modules/eslint/bin/eslint.js --ext ts src",
36 "test": "node ../node_modules/mocha/bin/_mocha",
37 "all": "npm run clean && npm run compile && npm run lint && npm test",
38 "compile:publish": "node ../build/bin/tsc -b ./tsconfig.publish.json",
39 "all:publish": "git clean -xfd . && npm install && npm run compile:publish && npm run lint && npm test",
40 "preversion": "npm test"
41 }
42}