1 | {
|
2 | "name": "vscode-languageserver-types",
|
3 | "description": "Types used by the Language server for node",
|
4 | "version": "3.8.2",
|
5 | "author": "Microsoft Corporation",
|
6 | "license": "MIT",
|
7 | "repository": {
|
8 | "type": "git",
|
9 | "url": "https://github.com/Microsoft/vscode-languageserver-node.git"
|
10 | },
|
11 | "bugs": {
|
12 | "url": "https://github.com/Microsoft/vscode-languageserver-node/issues"
|
13 | },
|
14 | "main": "./lib/umd/main.js",
|
15 | "typings": "./lib/umd/main",
|
16 | "module": "./lib/esm/main.js",
|
17 | "scripts": {
|
18 | "prepublishOnly": "npm run clean && npm run compile-esm && npm run compile && npm run test",
|
19 | "postpublish": "node ../build/npm/post-publish.js",
|
20 | "compile": "node ../build/bin/tsc -p ./tsconfig.json",
|
21 | "compile-esm": "node ../build/bin/tsc -p ./tsconfig.esm.json",
|
22 | "clean": "node ../node_modules/rimraf/bin.js lib",
|
23 | "watch": "node ../build/bin/tsc -w -p ./tsconfig.json",
|
24 | "test": "node ../node_modules/mocha/bin/_mocha"
|
25 | }
|
26 | }
|