Update package.json description

This commit is contained in:
Wylie Conlon 2018-11-16 15:48:08 -05:00
parent 50a85a6c13
commit 5c0654b12d
2 changed files with 17 additions and 8 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "jsonrpc-ws-proxy", "name": "jsonrpc-ws-proxy",
"version": "0.0.4", "version": "0.0.5",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,9 +1,24 @@
{ {
"name": "jsonrpc-ws-proxy", "name": "jsonrpc-ws-proxy",
"version": "0.0.4", "version": "0.0.5",
"author": "Wylie Conlon <wylieconlon@gmail.com>", "author": "Wylie Conlon <wylieconlon@gmail.com>",
"description": "Creates a web socket proxy for any number of language server processes",
"keywords": [
"jsonrpc",
"json-rpc",
"languageserver",
"websocket"
],
"homepage": "https://github.com/wylieconlon/jsonrpc-ws-proxy",
"repository": "github:wylieconlon/jsonrpc-ws-proxy",
"bin": "dist/server.js", "bin": "dist/server.js",
"main": "dist/server.js", "main": "dist/server.js",
"scripts": {
"prepare": "npm run clean && npm run build",
"watch": "tsc -w",
"clean": "rimraf dist",
"build": "tsc"
},
"dependencies": { "dependencies": {
"@sourcegraph/vscode-ws-jsonrpc": "0.0.3-fork", "@sourcegraph/vscode-ws-jsonrpc": "0.0.3-fork",
"js-yaml": "^3.12.0", "js-yaml": "^3.12.0",
@ -16,11 +31,5 @@
"rimraf": "^2.6.2", "rimraf": "^2.6.2",
"typescript": "^3.0.1" "typescript": "^3.0.1"
}, },
"scripts": {
"prepare": "npm run clean && npm run build",
"watch": "tsc -w",
"clean": "rimraf dist",
"build": "tsc"
},
"license": "ISC" "license": "ISC"
} }